Forum Replies Created

Viewing 1 replies (of 1 total)
  • In V1.1.6 change the file modules/button-effects/widgets/button-effects.php

    arround line 35 the function to this:

    public function get_style_depends() {
    global $settings;
    if ( ! \Elementor\Plugin::$instance->editor->is_edit_mode() && ! \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
    $settings = $this->get_settings();
    }
    return [ ‘oew-button-effects’, ‘oew-‘. $settings[‘effect’] ];
    }

    and then the same for file modules/link-effects/widgets/links-effects.php

    public function get_style_depends() {
    global $settings;
    if ( ! \Elementor\Plugin::$instance->editor->is_edit_mode() && ! \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
    $settings = $this->get_settings();
    }
    return [ ‘oew-link-effects’, ‘oew-‘. $settings[‘effect’] ];
    }

    Then elementor will load fine.

    Hope this helps for you and 1.1.6 = 1.1.x up to 1.1.9 without the bloat…

Viewing 1 replies (of 1 total)