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.