• thebrianking

    (@thebrianking)


    When are you going fix the issue with the shortcode displaying all images in the slider one after another in the Divi 5 builder when editing a page??

Viewing 1 replies (of 1 total)
  • Plugin Support Laszlo

    (@laszloszalvak)

    Hi @thebrianking

    This problem will be addressed in the next release of Smart Slider 3.

    Until then you can fix the problem by opening up this file:

    • wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Platform/WordPress/Integration/Divi/Divi.php

    and there you should add this method ( e.g. before the forceShortcodeIframe() method ):

        public function action_divi_visual_builder_initialize() {
    if (Request::$REQUEST->getCmd('is_fb_preview')) {
    $this->forceShortcodeIframe();
    }
    }

    and into the __construct() function you should add this code:

            add_action('divi_visual_builder_initialize', array(
    $this,
    'action_divi_visual_builder_initialize'
    ));

    And that should fix the problem.

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.