/home/altere25/sportzsoftlivemeet.com/wp-content/plugins/elementor-pro
NameSizeModeActions
assets/-0755rm
base/-0755rm
classes/-0755rm
core/-0755rm
data/-0755rm
includes/-0755rm
license/-0755rm
modules/-0755rm
sample-data/-0755rm
vendor/-0755rm
vendor_prefixed/-0755rm
changelog.txt668220644editdlrm
elementor-pro.php50070644editdlrm
license.txt9190644editdlrm
plugin.php79390644editdlrm
readme.txt3370644editdlrm
run-on-linux.js11400644editdlrm
Edit: /home/altere25/sportzsoftlivemeet.com/wp-content/plugins/elementor-pro/elementor-pro.php (5007B)
=' ) ) { add_action( 'admin_notices', 'elementor_pro_fail_load_out_of_date' ); return; } $elementor_version_recommendation = '2.6.0'; if ( ! version_compare( ELEMENTOR_VERSION, $elementor_version_recommendation, '>=' ) ) { add_action( 'admin_notices', 'elementor_pro_admin_notice_upgrade_recommendation' ); } require ELEMENTOR_PRO_PATH . 'plugin.php'; } add_action( 'plugins_loaded', 'elementor_pro_load_plugin' ); /** * Show in WP Dashboard notice about the plugin is not activated. * * @since 1.0.0 * * @return void */ function elementor_pro_fail_load() { $screen = get_current_screen(); if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) { return; } $plugin = 'elementor/elementor.php'; if ( _is_elementor_installed() ) { if ( ! current_user_can( 'activate_plugins' ) ) { return; } $activation_url = wp_nonce_url( 'plugins.php?action=activate&plugin=' . $plugin . '&plugin_status=all&paged=1&s', 'activate-plugin_' . $plugin ); $message = '

' . __( 'Elementor Pro is not working because you need to activate the Elementor plugin.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $activation_url, __( 'Activate Elementor Now', 'elementor-pro' ) ) . '

'; } else { if ( ! current_user_can( 'install_plugins' ) ) { return; } $install_url = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' ); $message = '

' . __( 'Elementor Pro is not working because you need to install the Elementor plugin.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $install_url, __( 'Install Elementor Now', 'elementor-pro' ) ) . '

'; } echo '

' . $message . '

'; } function elementor_pro_fail_load_out_of_date() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = '

' . __( 'Elementor Pro is not working because you are using an old version of Elementor.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '

'; echo '
' . $message . '
'; } function elementor_pro_admin_notice_upgrade_recommendation() { if ( ! current_user_can( 'update_plugins' ) ) { return; } $file_path = 'elementor/elementor.php'; $upgrade_link = wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $file_path, 'upgrade-plugin_' . $file_path ); $message = '

' . __( 'A new version of Elementor is available. For better performance and compatibility of Elementor Pro, we recommend updating to the latest version.', 'elementor-pro' ) . '

'; $message .= '

' . sprintf( '%s', $upgrade_link, __( 'Update Elementor Now', 'elementor-pro' ) ) . '

'; echo '
' . $message . '
'; } if ( ! function_exists( '_is_elementor_installed' ) ) { function _is_elementor_installed() { $file_path = 'elementor/elementor.php'; $installed_plugins = get_plugins(); return isset( $installed_plugins[ $file_path ] ); } }