Plugin Directory

Changeset 3199410


Ignore:
Timestamp:
11/29/2024 11:39:22 AM (16 months ago)
Author:
dynamicooo
Message:

tagging version 5.0.15

Location:
dynamic-visibility-for-elementor
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • dynamic-visibility-for-elementor/tags/5.0.15/constants.php

    r3187397 r3199410  
    11<?php
    2 define( 'DVE_VERSION', '5.0.14' );
     2define( 'DVE_VERSION', '5.0.15' );
    33define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '2.9.0' );
    44define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' );
  • dynamic-visibility-for-elementor/tags/5.0.15/core/plugin.php

    r3187397 r3199410  
    5555    public function init()
    5656    {
     57        add_action( 'init', function() {
     58            load_plugin_textdomain( 'dynamic-visibility-for-elementor' );
     59        } );
     60
    5761        $this->init_managers();
    5862
  • dynamic-visibility-for-elementor/tags/5.0.15/dynamic-visibility-for-elementor.php

    r3187397 r3199410  
    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: 5.0.14
     7 * Version: 5.0.15
    88 * Author: Dynamic.ooo
    99 * Author URI: https://www.dynamic.ooo/
     
    4646 */
    4747function dynamic_visibility_for_elementor_load() {
    48     // Load localization file
    49     load_plugin_textdomain( 'dynamic-visibility-for-elementor' );
    50 
    5148    // Notice if the Elementor is not active
    5249    if ( ! did_action( 'elementor/loaded' ) ) {
  • dynamic-visibility-for-elementor/tags/5.0.15/readme.txt

    r3187397 r3199410  
    33Tags: elementor, visibility, hide, dynamic, container, widget
    44Requires at least: 5.2
    5 Tested up to: 6.7
     5Tested up to: 6.7.1
    66Requires PHP: 7.1
    7 Stable tag: 5.0.14
     7Stable tag: 5.0.15
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7272
    7373== Changelog ==
     74
     75= 5.0.15 =
     76* Fix: Warning about textdomain being loaded too early
    7477
    7578= 5.0.14 =
  • dynamic-visibility-for-elementor/trunk/constants.php

    r3187397 r3199410  
    11<?php
    2 define( 'DVE_VERSION', '5.0.14' );
     2define( 'DVE_VERSION', '5.0.15' );
    33define( 'DVE_MINIMUM_ELEMENTOR_VERSION', '2.9.0' );
    44define( 'DVE_PRODUCT_NAME', 'Dynamic Visibility for Elementor' );
  • dynamic-visibility-for-elementor/trunk/core/plugin.php

    r3187397 r3199410  
    5555    public function init()
    5656    {
     57        add_action( 'init', function() {
     58            load_plugin_textdomain( 'dynamic-visibility-for-elementor' );
     59        } );
     60
    5761        $this->init_managers();
    5862
  • dynamic-visibility-for-elementor/trunk/dynamic-visibility-for-elementor.php

    r3187397 r3199410  
    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: 5.0.14
     7 * Version: 5.0.15
    88 * Author: Dynamic.ooo
    99 * Author URI: https://www.dynamic.ooo/
     
    4646 */
    4747function dynamic_visibility_for_elementor_load() {
    48     // Load localization file
    49     load_plugin_textdomain( 'dynamic-visibility-for-elementor' );
    50 
    5148    // Notice if the Elementor is not active
    5249    if ( ! did_action( 'elementor/loaded' ) ) {
  • dynamic-visibility-for-elementor/trunk/readme.txt

    r3187397 r3199410  
    33Tags: elementor, visibility, hide, dynamic, container, widget
    44Requires at least: 5.2
    5 Tested up to: 6.7
     5Tested up to: 6.7.1
    66Requires PHP: 7.1
    7 Stable tag: 5.0.14
     7Stable tag: 5.0.15
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7272
    7373== Changelog ==
     74
     75= 5.0.15 =
     76* Fix: Warning about textdomain being loaded too early
    7477
    7578= 5.0.14 =
Note: See TracChangeset for help on using the changeset viewer.