Plugin Directory

Changeset 3319106


Ignore:
Timestamp:
06/28/2025 10:04:25 AM (9 months ago)
Author:
gn_themes
Message:

7.4.2

Location:
shortcodes-ultimate
Files:
549 added
4 edited

Legend:

Unmodified
Added
Removed
  • shortcodes-ultimate/trunk/includes/class-shortcodes-ultimate.php

    r3074867 r3319106  
    165165        require_once $this->plugin_path . 'admin/class-shortcodes-ultimate-notice-rate.php';
    166166        require_once $this->plugin_path . 'admin/class-shortcodes-ultimate-notice-unsafe-features.php';
    167         /**
    168          * Register custom widget
    169          */
    170         require_once $this->plugin_path . 'admin/class-shortcodes-ultimate-widget.php';
    171167        /**
    172168         * Suggest Pro features
     
    265261        );
    266262        /**
    267          * Register custom widget
    268          */
    269         $this->widget = new Shortcodes_Ultimate_Widget($this->plugin_prefix);
    270         add_action( 'widgets_init', array($this->widget, 'register') );
    271         /**
    272263         * Suggest PRO features
    273264         */
  • shortcodes-ultimate/trunk/plugin.php

    r3315643 r3319106  
    1313        do_action( 'su/ready', $plugin );
    1414    }, 1 );
     15    require_once dirname( __FILE__ ) . '/admin/class-shortcodes-ultimate-widget.php';
     16    $custom_widget = new Shortcodes_Ultimate_Widget('shortcodes-ultimate-');
     17    add_action( 'widgets_init', array($custom_widget, 'register') );
    1518} );
  • shortcodes-ultimate/trunk/readme.txt

    r3315643 r3319106  
    44Donate link: https://getshortcodes.com/pricing/
    55Tags: posts, carousel, shortcode, toggle, columns
    6 Stable tag: 7.4.1
     6Stable tag: 7.4.2
    77Requires PHP: 5.4
    88Requires at least: 5.0
     
    140140== Changelog ==
    141141
     142
     143
     144
     145= 7.4.2
     146
     147This update fixes an issue where widgets might not display correctly in the classic interface, and some shortcodes could appear as plain text. This update is recommended for all users
     148
     149If you are using premium add-ons, don't forget to visit our website using the link below and download the latest versions. The add-ons have also been updated.
     150
     151[Download premium add-ons](https://getshortcodes.com/account/restore-purchase/)
    142152
    143153
  • shortcodes-ultimate/trunk/shortcodes-ultimate.php

    r3315643 r3319106  
    99 * Text Domain: shortcodes-ultimate
    1010 * License: GPLv3
    11  * Version: 7.4.1
     11 * Version: 7.4.2
    1212 * Requires PHP: 5.4
    1313 * Requires at least: 5.0
     
    6464    }
    6565    define( 'SU_PLUGIN_FILE', __FILE__ );
    66     define( 'SU_PLUGIN_VERSION', '7.4.1' );
     66    define( 'SU_PLUGIN_VERSION', '7.4.2' );
    6767    require_once dirname( __FILE__ ) . '/plugin.php';
    6868}
Note: See TracChangeset for help on using the changeset viewer.