| @@ -1,14 +1,14 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: Elementor |
| 4 | - * Description: The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile responsive editing, and more. Get started now! | |
| 4 | + * Description: The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now! | |
| 5 | 5 | * Plugin URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash |
| 6 | - * Version: 4.3.0-beta2 | |
| 6 | + * Version: 3.35.7 | |
| 7 | 7 | * Author: Elementor.com |
| 8 | 8 | * Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash |
| 9 | 9 | * Requires PHP: 7.4 |
| 10 | - * Requires at least: 6.8 | |
| 10 | + * Requires at least: 6.6 | |
| 11 | 11 | * Text Domain: elementor |
| 12 | 12 | * |
| 13 | 13 | * @package Elementor |
| 14 | 14 | * @category Core |
| @@ -27,10 +27,9 @@ | ||
| 27 | 27 | if ( ! defined( 'ABSPATH' ) ) { |
| 28 | 28 | exit; // Exit if accessed directly. |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | -define( 'ELEMENTOR_VERSION', '4.3.0-beta2' ); | |
| 32 | -define( 'ELEMENTOR_MINIMUM_WP_VERSION', '6.8' ); | |
| 31 | +define( 'ELEMENTOR_VERSION', '3.35.7' ); | |
| 33 | 32 | |
| 34 | 33 | define( 'ELEMENTOR__FILE__', __FILE__ ); |
| 35 | 34 | define( 'ELEMENTOR_PLUGIN_BASE', plugin_basename( ELEMENTOR__FILE__ ) ); |
| 36 | 35 | define( 'ELEMENTOR_PATH', plugin_dir_path( ELEMENTOR__FILE__ ) ); |
| @@ -48,11 +47,9 @@ | ||
| 48 | 47 | if ( ! defined( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN' ) ) { |
| 49 | 48 | define( 'ELEMENTOR_EDITOR_EVENTS_MIXPANEL_TOKEN', '150605b3b9f979922f2ac5a52e2dcfe9' ); |
| 50 | 49 | } |
| 51 | 50 | |
| 52 | -if ( file_exists( ELEMENTOR_PATH . 'vendor/autoload_packages.php' ) ) { | |
| 53 | - require_once ELEMENTOR_PATH . 'vendor/autoload_packages.php'; | |
| 54 | -} elseif ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) { | |
| 51 | +if ( file_exists( ELEMENTOR_PATH . 'vendor/autoload.php' ) ) { | |
| 55 | 52 | require_once ELEMENTOR_PATH . 'vendor/autoload.php'; |
| 56 | 53 | // We need this file because of the DI\create function that we are using. |
| 57 | 54 | // Autoload classmap doesn't include this file. |
| 58 | 55 | } |
| @@ -68,9 +65,9 @@ | ||
| 68 | 65 | } |
| 69 | 66 | |
| 70 | 67 | if ( ! version_compare( PHP_VERSION, '7.4', '>=' ) ) { |
| 71 | 68 | add_action( 'admin_notices', 'elementor_fail_php_version' ); |
| 72 | -} elseif ( ! version_compare( get_bloginfo( 'version' ), ELEMENTOR_MINIMUM_WP_VERSION, '>=' ) ) { | |
| 69 | +} elseif ( ! version_compare( get_bloginfo( 'version' ), '6.5', '>=' ) ) { | |
| 73 | 70 | add_action( 'admin_notices', 'elementor_fail_wp_version' ); |
| 74 | 71 | } else { |
| 75 | 72 | require ELEMENTOR_PATH . 'includes/plugin.php'; |
| 76 | 73 | } |
| @@ -114,9 +111,9 @@ | ||
| 114 | 111 | esc_html__( 'Elementor isn’t running because WordPress is outdated.', 'elementor' ), |
| 115 | 112 | sprintf( |
| 116 | 113 | /* translators: %s: WordPress version. */ |
| 117 | 114 | esc_html__( 'Update to version %s and get back to creating!', 'elementor' ), |
| 118 | - ELEMENTOR_MINIMUM_WP_VERSION | |
| 115 | + '6.5' | |
| 119 | 116 | ), |
| 120 | 117 | esc_html__( 'Show me how', 'elementor' ) |
| 121 | 118 | ); |
| 122 | 119 | |