Plugin Directory

Changeset 3412765


Ignore:
Timestamp:
12/06/2025 05:42:53 AM (5 weeks ago)
Author:
Litonice13
Message:

Version 2.0.9.9.2 - Fixed: Fatal error Class Elementor\Plugin not found in Custom JS module when Elementor is not active

Location:
master-addons
Files:
5 edited
5 copied

Legend:

Unmodified
Added
Removed
  • master-addons/tags/2.0.9.9.2/changelog.txt

    r3412762 r3412765  
    11== Changelog ==
     2= 2.0.9.9.2 (06-12-2025) =
     3* Fixed: Fatal error "Class Elementor\Plugin not found" in Custom JS module when Elementor is not active.
     4
    25= 2.0.9.9.1 (06-12-2025) =
    36* Fixed: Custom Post Types not showing on Blog Element. Thanks [@hamiddavodi](https://wordpress.org/support/topic/blog-widget-does-not-work-properly/) for informing about the issue.
  • master-addons/tags/2.0.9.9.2/inc/modules/custom-js/custom-js.php

    r3353283 r3412765  
    124124    public function jltma_element_custom_js()
    125125    {
     126        if (!class_exists('\Elementor\Plugin') || !\Elementor\Plugin::$instance) {
     127            return;
     128        }
     129
    126130        if (!current_user_can('edit_posts')) {
    127131            return;
     
    178182    public function jltma_page_custom_js()
    179183    {
     184        if (!class_exists('\Elementor\Plugin') || !\Elementor\Plugin::$instance) {
     185            return;
     186        }
     187
    180188        if (!current_user_can('edit_posts')) {
    181189            return;
  • master-addons/tags/2.0.9.9.2/master-addons.php

    r3412762 r3412765  
    66 * Plugin URI: https://master-addons.com/all-widgets/
    77 * Author: Jewel Theme
    8  * Version: 2.0.9.9.1
     8 * Version: 2.0.9.9.2
    99 * Author URI: https://master-addons.com
    1010 * Text Domain: master-addons
  • master-addons/tags/2.0.9.9.2/readme.txt

    r3412762 r3412765  
    55Tested up to: 6.9
    66Requires PHP: 7.0
    7 Stable tag: 2.0.9.9.1
     7Stable tag: 2.0.9.9.2
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    354354
    355355== Changelog ==
     356
     357= 2.0.9.9.2 (06-12-2025) =
     358* Fixed: Fatal error "Class Elementor\Plugin not found" in Custom JS module when Elementor is not active.
    356359
    357360= 2.0.9.9 (29-10-2025) =
  • master-addons/trunk/changelog.txt

    r3412762 r3412765  
    11== Changelog ==
     2= 2.0.9.9.2 (06-12-2025) =
     3* Fixed: Fatal error "Class Elementor\Plugin not found" in Custom JS module when Elementor is not active.
     4
    25= 2.0.9.9.1 (06-12-2025) =
    36* Fixed: Custom Post Types not showing on Blog Element. Thanks [@hamiddavodi](https://wordpress.org/support/topic/blog-widget-does-not-work-properly/) for informing about the issue.
  • master-addons/trunk/inc/modules/custom-js/custom-js.php

    r3353283 r3412765  
    124124    public function jltma_element_custom_js()
    125125    {
     126        if (!class_exists('\Elementor\Plugin') || !\Elementor\Plugin::$instance) {
     127            return;
     128        }
     129
    126130        if (!current_user_can('edit_posts')) {
    127131            return;
     
    178182    public function jltma_page_custom_js()
    179183    {
     184        if (!class_exists('\Elementor\Plugin') || !\Elementor\Plugin::$instance) {
     185            return;
     186        }
     187
    180188        if (!current_user_can('edit_posts')) {
    181189            return;
  • master-addons/trunk/master-addons.php

    r3412762 r3412765  
    66 * Plugin URI: https://master-addons.com/all-widgets/
    77 * Author: Jewel Theme
    8  * Version: 2.0.9.9.1
     8 * Version: 2.0.9.9.2
    99 * Author URI: https://master-addons.com
    1010 * Text Domain: master-addons
  • master-addons/trunk/readme.txt

    r3412762 r3412765  
    55Tested up to: 6.9
    66Requires PHP: 7.0
    7 Stable tag: 2.0.9.9.1
     7Stable tag: 2.0.9.9.2
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    354354
    355355== Changelog ==
     356
     357= 2.0.9.9.2 (06-12-2025) =
     358* Fixed: Fatal error "Class Elementor\Plugin not found" in Custom JS module when Elementor is not active.
    356359
    357360= 2.0.9.9 (29-10-2025) =
Note: See TracChangeset for help on using the changeset viewer.