Changeset 3395592
- Timestamp:
- 11/14/2025 08:57:50 AM (2 months ago)
- Location:
- dynamic-visibility-for-elementor
- Files:
-
- 12 deleted
- 18 edited
- 2 copied
-
tags/6.0.1 (copied) (copied from dynamic-visibility-for-elementor/trunk)
-
tags/6.0.1/assets/js/editor.js (modified) (2 diffs)
-
tags/6.0.1/class/ajax.php (deleted)
-
tags/6.0.1/class/elements.php (deleted)
-
tags/6.0.1/class/trait/elementor.php (modified) (1 diff)
-
tags/6.0.1/class/trait/woo.php (deleted)
-
tags/6.0.1/constants.php (modified) (1 diff)
-
tags/6.0.1/core/plugin.php (modified) (2 diffs)
-
tags/6.0.1/dynamic-visibility-for-elementor.php (modified) (2 diffs)
-
tags/6.0.1/includes/extensions/dynamic-visibility.php (deleted)
-
tags/6.0.1/readme.txt (modified) (3 diffs)
-
tags/6.0.1/trunk (copied) (copied from dynamic-visibility-for-elementor/trunk)
-
tags/6.0.1/trunk/assets/js/editor.js (modified) (2 diffs)
-
tags/6.0.1/trunk/class/ajax.php (deleted)
-
tags/6.0.1/trunk/class/elements.php (deleted)
-
tags/6.0.1/trunk/class/trait/elementor.php (modified) (1 diff)
-
tags/6.0.1/trunk/class/trait/woo.php (deleted)
-
tags/6.0.1/trunk/constants.php (modified) (1 diff)
-
tags/6.0.1/trunk/core/plugin.php (modified) (2 diffs)
-
tags/6.0.1/trunk/dynamic-visibility-for-elementor.php (modified) (2 diffs)
-
tags/6.0.1/trunk/includes/extensions/dynamic-visibility.php (deleted)
-
tags/6.0.1/trunk/readme.txt (modified) (3 diffs)
-
trunk/assets/js/editor.js (modified) (2 diffs)
-
trunk/class/ajax.php (deleted)
-
trunk/class/elements.php (deleted)
-
trunk/class/trait/elementor.php (modified) (1 diff)
-
trunk/class/trait/woo.php (deleted)
-
trunk/constants.php (modified) (1 diff)
-
trunk/core/plugin.php (modified) (2 diffs)
-
trunk/dynamic-visibility-for-elementor.php (modified) (2 diffs)
-
trunk/includes/extensions/dynamic-visibility.php (deleted)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-visibility-for-elementor/tags/6.0.1/assets/js/editor.js
r2650583 r3395592 257 257 return markup; 258 258 }, 259 minimumInputLength: 1259 minimumInputLength: 2 260 260 }); 261 261 }, … … 272 272 } 273 273 // no translation needed for these query types: 274 if(queryType === 'pods' || queryType === 'acf') { 274 if ( 275 queryType === 'pods' || 276 queryType === 'jet' || 277 queryType === 'metabox' || 278 queryType === 'metabox_relationship' || 279 queryType === 'options' 280 ) { 275 281 let t = {} 276 282 for (id of ids) { -
dynamic-visibility-for-elementor/tags/6.0.1/class/trait/elementor.php
r3390931 r3395592 8 8 9 9 trait Elementor { 10 /** 11 * @return boolean 12 */ 13 public static function is_swiper_latest() { 14 if ( version_compare( ELEMENTOR_VERSION, '3.28.0', '>=' ) ) { 15 // Since Elementor 3.28.0+ the experiments feature check is no longer needed 16 // as Swiper latest is now the default 17 return true; 18 } 19 return \Elementor\Plugin::$instance->experiments->is_feature_active( 'e_swiper_latest' ); 20 } 10 21 11 /** 22 12 * Get Current Post ID -
dynamic-visibility-for-elementor/tags/6.0.1/constants.php
r3390931 r3395592 1 1 <?php 2 define( 'DVE_VERSION', '6.0. 0' );2 define( 'DVE_VERSION', '6.0.1' ); 3 3 define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' ); 4 4 define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' ); -
dynamic-visibility-for-elementor/tags/6.0.1/core/plugin.php
r3390931 r3395592 27 27 */ 28 28 public $notices; 29 /** 30 * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module 31 */ 32 public $query_control; 29 33 30 34 protected static $instance; … … 36 40 $this->controls = new Controls(); 37 41 $this->notices = new AdminPages\Notices(); 42 $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module(); 38 43 39 44 add_action( 'init', function () { -
dynamic-visibility-for-elementor/tags/6.0.1/dynamic-visibility-for-elementor.php
r3390931 r3395592 5 5 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM. 6 6 * Plugin URI: https://www.dynamic.ooo/widget/dynamic-visibility/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 * Version: 6.0. 07 * Version: 6.0.1 8 8 * Author: Dynamic.ooo 9 9 * Author URI: https://www.dynamic.ooo/ … … 14 14 * License: GPL-3.0 15 15 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt 16 * Elementor tested up to: 3.3 2.517 * Elementor Pro tested up to: 3.3 2.316 * Elementor tested up to: 3.33.0 17 * Elementor Pro tested up to: 3.33.1 18 18 * 19 19 * This program is free software: you can redistribute it and/or modify -
dynamic-visibility-for-elementor/tags/6.0.1/readme.txt
r3391046 r3395592 1 1 === Dynamic Visibility for Elementor === 2 2 Contributors: dynamicooo 3 Tags: elementor, visibility, hide, dynamic, container, widget3 Tags: elementor, hide, conditional, schedule, woocommerce 4 4 Requires at least: 5.2 5 Tested up to: 6. 7.15 Tested up to: 6.8.3 6 6 Requires PHP: 7.1 7 Stable tag: 6.0. 07 Stable tag: 6.0.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 Control who sees what on your website with Dynamic Visibility for Elementor. Show or hide any widget, container, section, column, or entire page based onpowerful conditions.11 Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions. 12 12 13 13 == Description == … … 75 75 * **Dynamic Posts Widget**: Advanced query builder 76 76 * **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro 77 * **Premium Support**: email support77 * **Premium Support**: Priority email support 78 78 79 79 = Documentation & Support = … … 111 111 112 112 == Changelog == 113 114 = 6.0.1 = 115 * Tweak: compatibility tags for Elementor 3.33.0 and Elementor Pro 3.33.0 116 * Fix: input controls in editor showing "The results could not be loaded" error 117 * Fix: infinite loading spinner on controls with previously saved values 113 118 114 119 = 6.0.0 = -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/assets/js/editor.js
r2650583 r3395592 257 257 return markup; 258 258 }, 259 minimumInputLength: 1259 minimumInputLength: 2 260 260 }); 261 261 }, … … 272 272 } 273 273 // no translation needed for these query types: 274 if(queryType === 'pods' || queryType === 'acf') { 274 if ( 275 queryType === 'pods' || 276 queryType === 'jet' || 277 queryType === 'metabox' || 278 queryType === 'metabox_relationship' || 279 queryType === 'options' 280 ) { 275 281 let t = {} 276 282 for (id of ids) { -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/class/trait/elementor.php
r3390931 r3395592 8 8 9 9 trait Elementor { 10 /** 11 * @return boolean 12 */ 13 public static function is_swiper_latest() { 14 if ( version_compare( ELEMENTOR_VERSION, '3.28.0', '>=' ) ) { 15 // Since Elementor 3.28.0+ the experiments feature check is no longer needed 16 // as Swiper latest is now the default 17 return true; 18 } 19 return \Elementor\Plugin::$instance->experiments->is_feature_active( 'e_swiper_latest' ); 20 } 10 21 11 /** 22 12 * Get Current Post ID -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/constants.php
r3390931 r3395592 1 1 <?php 2 define( 'DVE_VERSION', '6.0. 0' );2 define( 'DVE_VERSION', '6.0.1' ); 3 3 define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' ); 4 4 define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' ); -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/core/plugin.php
r3390931 r3395592 27 27 */ 28 28 public $notices; 29 /** 30 * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module 31 */ 32 public $query_control; 29 33 30 34 protected static $instance; … … 36 40 $this->controls = new Controls(); 37 41 $this->notices = new AdminPages\Notices(); 42 $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module(); 38 43 39 44 add_action( 'init', function () { -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/dynamic-visibility-for-elementor.php
r3390931 r3395592 5 5 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM. 6 6 * Plugin URI: https://www.dynamic.ooo/widget/dynamic-visibility/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 * Version: 6.0. 07 * Version: 6.0.1 8 8 * Author: Dynamic.ooo 9 9 * Author URI: https://www.dynamic.ooo/ … … 14 14 * License: GPL-3.0 15 15 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt 16 * Elementor tested up to: 3.3 2.517 * Elementor Pro tested up to: 3.3 2.316 * Elementor tested up to: 3.33.0 17 * Elementor Pro tested up to: 3.33.1 18 18 * 19 19 * This program is free software: you can redistribute it and/or modify -
dynamic-visibility-for-elementor/tags/6.0.1/trunk/readme.txt
r3391046 r3395592 1 1 === Dynamic Visibility for Elementor === 2 2 Contributors: dynamicooo 3 Tags: elementor, visibility, hide, dynamic, container, widget3 Tags: elementor, hide, conditional, schedule, woocommerce 4 4 Requires at least: 5.2 5 Tested up to: 6. 7.15 Tested up to: 6.8.3 6 6 Requires PHP: 7.1 7 Stable tag: 6.0. 07 Stable tag: 6.0.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 Control who sees what on your website with Dynamic Visibility for Elementor. Show or hide any widget, container, section, column, or entire page based onpowerful conditions.11 Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions. 12 12 13 13 == Description == … … 75 75 * **Dynamic Posts Widget**: Advanced query builder 76 76 * **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro 77 * **Premium Support**: email support77 * **Premium Support**: Priority email support 78 78 79 79 = Documentation & Support = … … 111 111 112 112 == Changelog == 113 114 = 6.0.1 = 115 * Tweak: compatibility tags for Elementor 3.33.0 and Elementor Pro 3.33.0 116 * Fix: input controls in editor showing "The results could not be loaded" error 117 * Fix: infinite loading spinner on controls with previously saved values 113 118 114 119 = 6.0.0 = -
dynamic-visibility-for-elementor/trunk/assets/js/editor.js
r2650583 r3395592 257 257 return markup; 258 258 }, 259 minimumInputLength: 1259 minimumInputLength: 2 260 260 }); 261 261 }, … … 272 272 } 273 273 // no translation needed for these query types: 274 if(queryType === 'pods' || queryType === 'acf') { 274 if ( 275 queryType === 'pods' || 276 queryType === 'jet' || 277 queryType === 'metabox' || 278 queryType === 'metabox_relationship' || 279 queryType === 'options' 280 ) { 275 281 let t = {} 276 282 for (id of ids) { -
dynamic-visibility-for-elementor/trunk/class/trait/elementor.php
r3390931 r3395592 8 8 9 9 trait Elementor { 10 /** 11 * @return boolean 12 */ 13 public static function is_swiper_latest() { 14 if ( version_compare( ELEMENTOR_VERSION, '3.28.0', '>=' ) ) { 15 // Since Elementor 3.28.0+ the experiments feature check is no longer needed 16 // as Swiper latest is now the default 17 return true; 18 } 19 return \Elementor\Plugin::$instance->experiments->is_feature_active( 'e_swiper_latest' ); 20 } 10 21 11 /** 22 12 * Get Current Post ID -
dynamic-visibility-for-elementor/trunk/constants.php
r3390931 r3395592 1 1 <?php 2 define( 'DVE_VERSION', '6.0. 0' );2 define( 'DVE_VERSION', '6.0.1' ); 3 3 define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' ); 4 4 define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' ); -
dynamic-visibility-for-elementor/trunk/core/plugin.php
r3390931 r3395592 27 27 */ 28 28 public $notices; 29 /** 30 * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module 31 */ 32 public $query_control; 29 33 30 34 protected static $instance; … … 36 40 $this->controls = new Controls(); 37 41 $this->notices = new AdminPages\Notices(); 42 $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module(); 38 43 39 44 add_action( 'init', function () { -
dynamic-visibility-for-elementor/trunk/dynamic-visibility-for-elementor.php
r3390931 r3395592 5 5 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM. 6 6 * Plugin URI: https://www.dynamic.ooo/widget/dynamic-visibility/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 * Version: 6.0. 07 * Version: 6.0.1 8 8 * Author: Dynamic.ooo 9 9 * Author URI: https://www.dynamic.ooo/ … … 14 14 * License: GPL-3.0 15 15 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt 16 * Elementor tested up to: 3.3 2.517 * Elementor Pro tested up to: 3.3 2.316 * Elementor tested up to: 3.33.0 17 * Elementor Pro tested up to: 3.33.1 18 18 * 19 19 * This program is free software: you can redistribute it and/or modify -
dynamic-visibility-for-elementor/trunk/readme.txt
r3391046 r3395592 1 1 === Dynamic Visibility for Elementor === 2 2 Contributors: dynamicooo 3 Tags: elementor, visibility, hide, dynamic, container, widget3 Tags: elementor, hide, conditional, schedule, woocommerce 4 4 Requires at least: 5.2 5 Tested up to: 6. 7.15 Tested up to: 6.8.3 6 6 Requires PHP: 7.1 7 Stable tag: 6.0. 07 Stable tag: 6.0.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 Control who sees what on your website with Dynamic Visibility for Elementor. Show or hide any widget, container, section, column, or entire page based onpowerful conditions.11 Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions. 12 12 13 13 == Description == … … 75 75 * **Dynamic Posts Widget**: Advanced query builder 76 76 * **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro 77 * **Premium Support**: email support77 * **Premium Support**: Priority email support 78 78 79 79 = Documentation & Support = … … 111 111 112 112 == Changelog == 113 114 = 6.0.1 = 115 * Tweak: compatibility tags for Elementor 3.33.0 and Elementor Pro 3.33.0 116 * Fix: input controls in editor showing "The results could not be loaded" error 117 * Fix: infinite loading spinner on controls with previously saved values 113 118 114 119 = 6.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.