Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
SmartSlider3
/
Platform
/
WordPress
/
Integration
/
Fusion
:
FusionElementSmartSlider3.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Nextend\SmartSlider3\Platform\WordPress\Integration\Fusion; use Fusion_Element; use Nextend\SmartSlider3\Platform\WordPress\Shortcode\Shortcode; class FusionElementSmartSlider3 extends Fusion_Element { public function __construct() { parent::__construct(); add_action('fusion_load_module', array( $this, 'force_iframe' )); add_shortcode('fusion_smartslider3', array( $this, 'render' )); } public function render($args, $content = '') { if (!empty($args)) { return do_shortcode('[smartslider3 slider="' . $args['slider'] . '"]'); } else { return '<!-- Avada Builder empty Smart Slider element -->'; } } public function force_iframe() { Shortcode::forceIframe('fusion', true); } }