diff --git a/src/addons/addon-example.md b/src/addons/addon-example.md index 2ec11b4f..162f05c2 100644 --- a/src/addons/addon-example.md +++ b/src/addons/addon-example.md @@ -44,8 +44,8 @@ The addon code should look as follows: * Text Domain: elementor-test-addon * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { @@ -96,7 +96,7 @@ final class Plugin { * @since 1.0.0 * @var string Minimum Elementor version required to run the addon. */ - const MINIMUM_ELEMENTOR_VERSION = '3.21.0'; + const MINIMUM_ELEMENTOR_VERSION = '3.20.0'; /** * Minimum PHP Version diff --git a/src/addons/compatibility.md b/src/addons/compatibility.md index 7ae06431..e596a35a 100644 --- a/src/addons/compatibility.md +++ b/src/addons/compatibility.md @@ -17,7 +17,7 @@ final class Plugin { * @since 1.0.0 * @var string Minimum Elementor version required to run the addon. */ - const MINIMUM_ELEMENTOR_VERSION = '3.21.0'; + const MINIMUM_ELEMENTOR_VERSION = '3.20.0'; /** * Minimum PHP Version diff --git a/src/addons/load.md b/src/addons/load.md index 8855a22f..35c77882 100644 --- a/src/addons/load.md +++ b/src/addons/load.md @@ -55,8 +55,8 @@ The main `elementor-test-addon.php` file loads the functionality: * Text Domain: elementor-test-addon * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ function elementor_test_addon() { diff --git a/src/addons/namespaces.md b/src/addons/namespaces.md index 369fae4a..1047a364 100644 --- a/src/addons/namespaces.md +++ b/src/addons/namespaces.md @@ -58,8 +58,8 @@ The main `elementor-test-addon.php` file loads the functionality: * Text Domain: elementor-test-addon * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ function elementor_test_addon() { diff --git a/src/cli/composer.md b/src/cli/composer.md index 1c67400f..645a7b8a 100644 --- a/src/cli/composer.md +++ b/src/cli/composer.md @@ -38,7 +38,7 @@ composer require wpackagist-plugin/elementor Or choose a specific version: ```bash -composer require wpackagist-plugin/elementor:3.21.0 +composer require wpackagist-plugin/elementor:3.24.0 ``` ## Install Elementor Pro @@ -81,7 +81,7 @@ composer require elementor/elementor-pro Or choose a specific version: ```bash -composer require elementor/elementor-pro:3.21.0 +composer require elementor/elementor-pro:3.24.0 ``` ## Activation diff --git a/src/context-menu/advanced-example.md b/src/context-menu/advanced-example.md index a03fa912..e14ec750 100644 --- a/src/context-menu/advanced-example.md +++ b/src/context-menu/advanced-example.md @@ -33,8 +33,8 @@ elementor-page-speed-context-menu/ * Text Domain: elementor-page-speed-context-menu * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/context-menu/simple-example.md b/src/context-menu/simple-example.md index c367407f..2fb6ff14 100644 --- a/src/context-menu/simple-example.md +++ b/src/context-menu/simple-example.md @@ -33,8 +33,8 @@ elementor-context-menus/ * Text Domain: elementor-context-menus * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/controls/complex-example.md b/src/controls/complex-example.md index af531656..bd985fd0 100644 --- a/src/controls/complex-example.md +++ b/src/controls/complex-example.md @@ -39,8 +39,8 @@ elementor-emojionearea-control/ * Text Domain: elementor-emojionearea-control * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/controls/simple-example.md b/src/controls/simple-example.md index 2227ad41..6ec0e1f3 100644 --- a/src/controls/simple-example.md +++ b/src/controls/simple-example.md @@ -36,8 +36,8 @@ elementor-currency-control/ * Text Domain: elementor-currency-control * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/deprecations/index.md b/src/deprecations/index.md index f54aa49a..424a1c1d 100644 --- a/src/deprecations/index.md +++ b/src/deprecations/index.md @@ -32,7 +32,7 @@ As an example, if code is deprecated in Elementor 3.1.0, it will start throwing Elementor Deprecation Period -The old deprecated code will be available until its final deletion. The new replacement code will be available from the deprecation poin. Between the deprecated and the deletion, the old code and the new code are both available for use. +The old deprecated code will be available until its final deletion. The new replacement code will be available from the deprecation point. Between the deprecated and the deletion, the old code and the new code are both available for use. ## Debugging Deprecated Code diff --git a/src/dynamic-tags/advanced-example.md b/src/dynamic-tags/advanced-example.md index 9b9abc8f..12243b41 100644 --- a/src/dynamic-tags/advanced-example.md +++ b/src/dynamic-tags/advanced-example.md @@ -33,8 +33,8 @@ elementor-acf-average-dynamic-tag/ * Text Domain: elementor-acf-average-dynamic-tag * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/dynamic-tags/complex-example.md b/src/dynamic-tags/complex-example.md index fdc53201..3bdb1b9f 100644 --- a/src/dynamic-tags/complex-example.md +++ b/src/dynamic-tags/complex-example.md @@ -33,8 +33,8 @@ elementor-server-variable-dynamic-tag/ * Text Domain: elementor-server-variable-dynamic-tag * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/dynamic-tags/simple-example.md b/src/dynamic-tags/simple-example.md index 94c433fc..8d6bf129 100644 --- a/src/dynamic-tags/simple-example.md +++ b/src/dynamic-tags/simple-example.md @@ -33,8 +33,8 @@ elementor-random-number-dynamic-tag/ * Text Domain: elementor-random-number-dynamic-tag * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/editor-controls/control-deprecated-notice.md b/src/editor-controls/control-deprecated-notice.md index 028f0d20..f8bb5200 100644 --- a/src/editor-controls/control-deprecated-notice.md +++ b/src/editor-controls/control-deprecated-notice.md @@ -114,8 +114,8 @@ class Elementor_Test_Widget extends \Elementor\Widget_Base { [ 'type' => \Elementor\Controls_Manager::DEPRECATED_NOTICE, 'widget' => 'your-old-widget', - 'since' => '3.16.0', - 'last' => '3.21.0', + 'since' => '3.10.0', + 'last' => '3.20.0', 'plugin' => 'Your Great Plugin', 'replacement' => 'your-new-widget', 'content_classes' => 'your-class', @@ -151,8 +151,8 @@ class Elementor_Test_Widget extends \Elementor\Widget_Base { $this->deprecated_notice( 'Your Great Plugin', - '3.16.0', - '3.21.0', + '3.10.0', + '3.20.0', 'your-new-widget' ); diff --git a/src/finder/advanced-example.md b/src/finder/advanced-example.md index 182ddaa1..1d17c365 100644 --- a/src/finder/advanced-example.md +++ b/src/finder/advanced-example.md @@ -33,8 +33,8 @@ elementor-finder-wordpress-settings/ * Text Domain: elementor-finder-wordpress-settings * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/finder/simple-example.md b/src/finder/simple-example.md index 223bb73d..0edf6219 100644 --- a/src/finder/simple-example.md +++ b/src/finder/simple-example.md @@ -33,8 +33,8 @@ elementor-finder-social-media/ * Text Domain: elementor-finder-social-media * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/form-actions/advanced-example.md b/src/form-actions/advanced-example.md index 1f9b1c16..d3d13e3b 100644 --- a/src/form-actions/advanced-example.md +++ b/src/form-actions/advanced-example.md @@ -33,8 +33,8 @@ elementor-forms-sendy-action/ * Text Domain: elementor-forms-sendy-action * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/form-actions/simple-example.md b/src/form-actions/simple-example.md index 85b70c01..e6a30191 100644 --- a/src/form-actions/simple-example.md +++ b/src/form-actions/simple-example.md @@ -34,8 +34,8 @@ elementor-forms-ping-action/ * Text Domain: elementor-forms-ping-action * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/form-fields/advanced-example.md b/src/form-fields/advanced-example.md index 52adfea5..e7e7b3a5 100644 --- a/src/form-fields/advanced-example.md +++ b/src/form-fields/advanced-example.md @@ -33,8 +33,8 @@ elementor-form-credit-card-number-field/ * Text Domain: elementor-form-credit-card-number-field * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/form-fields/simple-example.md b/src/form-fields/simple-example.md index a8f60ae1..9c3546a3 100644 --- a/src/form-fields/simple-example.md +++ b/src/form-fields/simple-example.md @@ -33,8 +33,8 @@ elementor-form-local-tel-field/ * Text Domain: elementor-form-local-tel-field * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/getting-started/first-addon.md b/src/getting-started/first-addon.md index 4b854e8a..5b42aea5 100644 --- a/src/getting-started/first-addon.md +++ b/src/getting-started/first-addon.md @@ -41,8 +41,8 @@ These widgets will require several files. The main file `elementor-addon.php` wi * Text Domain: elementor-addon * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ function register_hello_world_widget( $widgets_manager ) { diff --git a/src/theme-conditions/advanced-example.md b/src/theme-conditions/advanced-example.md index eef6985b..6d4f960e 100644 --- a/src/theme-conditions/advanced-example.md +++ b/src/theme-conditions/advanced-example.md @@ -34,8 +34,8 @@ elementor-user-role-conditions/ * Text Domain: elementor-user-role-conditions * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/theme-conditions/simple-example.md b/src/theme-conditions/simple-example.md index d5df1f47..342bc22a 100644 --- a/src/theme-conditions/simple-example.md +++ b/src/theme-conditions/simple-example.md @@ -33,8 +33,8 @@ elementor-logged-in-user-condition/ * Text Domain: elementor-logged-in-user-condition * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/widgets/advanced-example.md b/src/widgets/advanced-example.md index a54e9b48..af192089 100644 --- a/src/widgets/advanced-example.md +++ b/src/widgets/advanced-example.md @@ -33,8 +33,8 @@ elementor-list-widget/ * Text Domain: elementor-list-widget * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/src/widgets/simple-example.md b/src/widgets/simple-example.md index 798ca54b..bf0b926b 100644 --- a/src/widgets/simple-example.md +++ b/src/widgets/simple-example.md @@ -33,8 +33,8 @@ elementor-oembed-widget/ * Text Domain: elementor-oembed-widget * * Requires Plugins: elementor - * Elementor tested up to: 3.21.0 - * Elementor Pro tested up to: 3.21.0 + * Elementor tested up to: 3.24.0 + * Elementor Pro tested up to: 3.24.0 */ if ( ! defined( 'ABSPATH' ) ) {