Plugin Directory

Changeset 3395592


Ignore:
Timestamp:
11/14/2025 08:57:50 AM (2 months ago)
Author:
dynamicooo
Message:

tagging version 6.0.1

Location:
dynamic-visibility-for-elementor
Files:
12 deleted
18 edited
2 copied

Legend:

Unmodified
Added
Removed
  • dynamic-visibility-for-elementor/tags/6.0.1/assets/js/editor.js

    r2650583 r3395592  
    257257                    return markup;
    258258                },
    259                 minimumInputLength: 1
     259                minimumInputLength: 2
    260260            });
    261261        },
     
    272272            }
    273273            // 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            ) {
    275281                let t = {}
    276282                for (id of ids) {
  • dynamic-visibility-for-elementor/tags/6.0.1/class/trait/elementor.php

    r3390931 r3395592  
    88
    99trait 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   
    2111    /**
    2212     * Get Current Post ID
  • dynamic-visibility-for-elementor/tags/6.0.1/constants.php

    r3390931 r3395592  
    11<?php
    2 define( 'DVE_VERSION', '6.0.0' );
     2define( 'DVE_VERSION', '6.0.1' );
    33define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' );
    44define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' );
  • dynamic-visibility-for-elementor/tags/6.0.1/core/plugin.php

    r3390931 r3395592  
    2727     */
    2828    public $notices;
     29    /**
     30     * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module
     31     */
     32    public $query_control;
    2933
    3034    protected static $instance;
     
    3640        $this->controls = new Controls();
    3741        $this->notices = new AdminPages\Notices();
     42        $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module();
    3843
    3944        add_action( 'init', function () {
  • dynamic-visibility-for-elementor/tags/6.0.1/dynamic-visibility-for-elementor.php

    r3390931 r3395592  
    55 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM.
    66 * 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.0
     7 * Version: 6.0.1
    88 * Author: Dynamic.ooo
    99 * Author URI: https://www.dynamic.ooo/
     
    1414 * License: GPL-3.0
    1515 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    16  * Elementor tested up to: 3.32.5
    17  * Elementor Pro tested up to: 3.32.3
     16 * Elementor tested up to: 3.33.0
     17 * Elementor Pro tested up to: 3.33.1
    1818 *
    1919 * This program is free software: you can redistribute it and/or modify
  • dynamic-visibility-for-elementor/tags/6.0.1/readme.txt

    r3391046 r3395592  
    11=== Dynamic Visibility for Elementor ===
    22Contributors: dynamicooo
    3 Tags: elementor, visibility, hide, dynamic, container, widget
     3Tags: elementor, hide, conditional, schedule, woocommerce
    44Requires at least: 5.2
    5 Tested up to: 6.7.1
     5Tested up to: 6.8.3
    66Requires PHP: 7.1
    7 Stable tag: 6.0.0
     7Stable tag: 6.0.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    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 on powerful conditions.
     11Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions.
    1212
    1313== Description ==
     
    7575* **Dynamic Posts Widget**: Advanced query builder
    7676* **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro
    77 * **Premium Support**: email support
     77* **Premium Support**: Priority email support
    7878
    7979= Documentation & Support =
     
    111111
    112112== 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
    113118
    114119= 6.0.0 =
  • dynamic-visibility-for-elementor/tags/6.0.1/trunk/assets/js/editor.js

    r2650583 r3395592  
    257257                    return markup;
    258258                },
    259                 minimumInputLength: 1
     259                minimumInputLength: 2
    260260            });
    261261        },
     
    272272            }
    273273            // 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            ) {
    275281                let t = {}
    276282                for (id of ids) {
  • dynamic-visibility-for-elementor/tags/6.0.1/trunk/class/trait/elementor.php

    r3390931 r3395592  
    88
    99trait 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   
    2111    /**
    2212     * Get Current Post ID
  • dynamic-visibility-for-elementor/tags/6.0.1/trunk/constants.php

    r3390931 r3395592  
    11<?php
    2 define( 'DVE_VERSION', '6.0.0' );
     2define( 'DVE_VERSION', '6.0.1' );
    33define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' );
    44define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' );
  • dynamic-visibility-for-elementor/tags/6.0.1/trunk/core/plugin.php

    r3390931 r3395592  
    2727     */
    2828    public $notices;
     29    /**
     30     * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module
     31     */
     32    public $query_control;
    2933
    3034    protected static $instance;
     
    3640        $this->controls = new Controls();
    3741        $this->notices = new AdminPages\Notices();
     42        $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module();
    3843
    3944        add_action( 'init', function () {
  • dynamic-visibility-for-elementor/tags/6.0.1/trunk/dynamic-visibility-for-elementor.php

    r3390931 r3395592  
    55 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM.
    66 * 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.0
     7 * Version: 6.0.1
    88 * Author: Dynamic.ooo
    99 * Author URI: https://www.dynamic.ooo/
     
    1414 * License: GPL-3.0
    1515 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    16  * Elementor tested up to: 3.32.5
    17  * Elementor Pro tested up to: 3.32.3
     16 * Elementor tested up to: 3.33.0
     17 * Elementor Pro tested up to: 3.33.1
    1818 *
    1919 * 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  
    11=== Dynamic Visibility for Elementor ===
    22Contributors: dynamicooo
    3 Tags: elementor, visibility, hide, dynamic, container, widget
     3Tags: elementor, hide, conditional, schedule, woocommerce
    44Requires at least: 5.2
    5 Tested up to: 6.7.1
     5Tested up to: 6.8.3
    66Requires PHP: 7.1
    7 Stable tag: 6.0.0
     7Stable tag: 6.0.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    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 on powerful conditions.
     11Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions.
    1212
    1313== Description ==
     
    7575* **Dynamic Posts Widget**: Advanced query builder
    7676* **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro
    77 * **Premium Support**: email support
     77* **Premium Support**: Priority email support
    7878
    7979= Documentation & Support =
     
    111111
    112112== 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
    113118
    114119= 6.0.0 =
  • dynamic-visibility-for-elementor/trunk/assets/js/editor.js

    r2650583 r3395592  
    257257                    return markup;
    258258                },
    259                 minimumInputLength: 1
     259                minimumInputLength: 2
    260260            });
    261261        },
     
    272272            }
    273273            // 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            ) {
    275281                let t = {}
    276282                for (id of ids) {
  • dynamic-visibility-for-elementor/trunk/class/trait/elementor.php

    r3390931 r3395592  
    88
    99trait 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   
    2111    /**
    2212     * Get Current Post ID
  • dynamic-visibility-for-elementor/trunk/constants.php

    r3390931 r3395592  
    11<?php
    2 define( 'DVE_VERSION', '6.0.0' );
     2define( 'DVE_VERSION', '6.0.1' );
    33define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '3.3.0' );
    44define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' );
  • dynamic-visibility-for-elementor/trunk/core/plugin.php

    r3390931 r3395592  
    2727     */
    2828    public $notices;
     29    /**
     30     * @var \DynamicVisibilityForElementor\Modules\QueryControl\Module
     31     */
     32    public $query_control;
    2933
    3034    protected static $instance;
     
    3640        $this->controls = new Controls();
    3741        $this->notices = new AdminPages\Notices();
     42        $this->query_control = new \DynamicVisibilityForElementor\Modules\QueryControl\Module();
    3843
    3944        add_action( 'init', function () {
  • dynamic-visibility-for-elementor/trunk/dynamic-visibility-for-elementor.php

    r3390931 r3395592  
    55 * Description: Visibility rules for widgets, containers, sections, columns or pages with advanced conditions and removing the element from the DOM.
    66 * 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.0
     7 * Version: 6.0.1
    88 * Author: Dynamic.ooo
    99 * Author URI: https://www.dynamic.ooo/
     
    1414 * License: GPL-3.0
    1515 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    16  * Elementor tested up to: 3.32.5
    17  * Elementor Pro tested up to: 3.32.3
     16 * Elementor tested up to: 3.33.0
     17 * Elementor Pro tested up to: 3.33.1
    1818 *
    1919 * This program is free software: you can redistribute it and/or modify
  • dynamic-visibility-for-elementor/trunk/readme.txt

    r3391046 r3395592  
    11=== Dynamic Visibility for Elementor ===
    22Contributors: dynamicooo
    3 Tags: elementor, visibility, hide, dynamic, container, widget
     3Tags: elementor, hide, conditional, schedule, woocommerce
    44Requires at least: 5.2
    5 Tested up to: 6.7.1
     5Tested up to: 6.8.3
    66Requires PHP: 7.1
    7 Stable tag: 6.0.0
     7Stable tag: 6.0.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    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 on powerful conditions.
     11Show or hide Elementor widgets, containers, columns, and pages based on user role, date, device, and many other powerful conditions.
    1212
    1313== Description ==
     
    7575* **Dynamic Posts Widget**: Advanced query builder
    7676* **Integrations**: ACF, JetEngine, Meta Box, Toolset, WooCommerce, WPML, Search and Filter Pro
    77 * **Premium Support**: email support
     77* **Premium Support**: Priority email support
    7878
    7979= Documentation & Support =
     
    111111
    112112== 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
    113118
    114119= 6.0.0 =
Note: See TracChangeset for help on using the changeset viewer.