PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
fusion-builder
/
shortcodes
<?php if ( fusion_is_element_enabled( 'fusion_testimonials' ) ) { if ( ! class_exists( 'FusionSC_Testimonials' ) ) { /** * Shortcode class. * * @package fusion-builder * @since 1.0 */ class FusionSC_Testimonials extends Fusion_Element { /** * The testimonials counter. * * @access private * @since 1.0 * @var int */ private $testimonials_counter = 1; /** * Parent SC arguments. * * @access protected * @since 1.0 * @var array */ protected $parent_args; /** * Child SC arguments. * * @access protected * @since 1.0 * @var array */ protected $child_args; /** * Constructor. * * @access public * @since 1.0 */ public function __construct() { parent::__construct(); add_filter( 'fusion_attr_testimonials-shortcode', array( $this, 'attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-testimonials', array( $this, 'testimonials_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-quote', array( $this, 'quote_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-blockquote', array( $this, 'blockquote_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-review', array( $this, 'review_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-thumbnail', array( $this, 'thumbnail_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-image', array( $this, 'image_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-author', array( $this, 'author_attr' ) ); add_filter( 'fusion_attr_testimonials-shortcode-pagination', array( $this, 'pagination_attr' ) ); add_shortcode( 'fusion_testimonials', array( $this, 'render_parent' ) ); add_shortcode( 'fusion_testimonial', array( $this, 'render_child' ) ); } /** * Render the parent shortcode. * * @access public * @since 1.0 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render_parent( $args, $content = '' ) { global $fusion_settings; $defaults = FusionBuilder::set_shortcode_defaults( array( 'hide_on_mobile' => fusion_builder_default_visibility( 'string' ), 'class' => '', 'id' => '', 'backgroundcolor' => strtolower( $fusion_settings->get( 'testimonial_bg_color' ) ), 'design' => 'classic', 'navigation' => '', 'speed' => $fusion_settings->get( 'testimonials_speed' ), 'random' => $fusion_settings->get( 'testimonials_random' ), 'textcolor' => strtolower( $fusion_settings->get( 'testimonial_text_color' ) ), ), $args, 'fusion_testimonials' ); if ( 'yes' === $defaults['random'] || '1' === $defaults['random'] ) { $defaults['random'] = 1; } else { $defaults['random'] = 0; } if ( 'clean' === $defaults['design'] && '' === $defaults['navigation'] ) { $defaults['navigation'] = 'yes'; } elseif ( 'classic' === $defaults['design'] && '' === $defaults['navigation'] ) { $defaults['navigation'] = 'no'; } extract( $defaults ); $this->parent_args = $defaults; $styles = '<style type="text/css" scoped="scoped">'; $styles .= '#fusion-testimonials-' . $this->testimonials_counter . ' a{border-color:' . $textcolor . ';}'; $styles .= '#fusion-testimonials-' . $this->testimonials_counter . ' a:hover, #fusion-testimonials-' . $this->testimonials_counter . ' .activeSlide{background-color: ' . $textcolor . ';}'; $styles .= '.fusion-testimonials.' . $design . '.fusion-testimonials-' . $this->testimonials_counter . ' .author:after{border-top-color:' . $backgroundcolor . ' !important;}'; $styles .= '</style>'; $pagination = ''; if ( 'yes' === $this->parent_args['navigation'] ) { $pagination = sprintf( '<div %s></div>', FusionBuilder::attributes( 'testimonials-shortcode-pagination' ) ); } $html = sprintf( '<div %s>%s<div %s>%s</div>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode' ), $styles, FusionBuilder::attributes( 'testimonials-shortcode-testimonials' ), do_shortcode( $content ), $pagination ); $this->testimonials_counter++; return $html; } /** * Builds the attributes array. * * @access public * @since 1.0 * @return array */ public function attr() { $attr = fusion_builder_visibility_atts( $this->parent_args['hide_on_mobile'], array( 'class' => 'fusion-testimonials ' . $this->parent_args['design'] . ' fusion-testimonials-' . $this->testimonials_counter, ) ); $attr['data-random'] = $this->parent_args['random']; $attr['data-speed'] = $this->parent_args['speed']; if ( $this->parent_args['class'] ) { $attr['class'] .= ' ' . $this->parent_args['class']; } if ( $this->parent_args['id'] ) { $attr['id'] = $this->parent_args['id']; } return $attr; } /** * Builds the testimonials attributes array. * * @access public * @since 1.0 * @return array */ public function testimonials_attr() { return array( 'class' => 'reviews', ); } /** * Render the child shortcode. * * @access public * @since 1.0 * @param array $args Shortcode parameters. * @param string $content Content between shortcode. * @return string HTML output. */ public function render_child( $args, $content = '' ) { $defaults = FusionBuilder::set_shortcode_defaults( array( 'avatar' => 'male', 'company' => '', 'image' => '', 'image_id' => '', 'image_border_radius' => '', 'link' => '', 'name' => '', 'target' => '_self', 'gender' => '', // Deprecated. ), $args, 'fusion_testimonial' ); $defaults['image_border_radius'] = FusionBuilder::validate_shortcode_attr_value( $defaults['image_border_radius'], 'px' ); if ( 'round' === $defaults['image_border_radius'] ) { $defaults['image_border_radius'] = '50%'; } extract( $defaults ); $this->child_args = $defaults; // Check for deprecated. if ( $gender ) { $this->child_args['avatar'] = $gender; } if ( 'clean' === $this->parent_args['design'] ) { return $this->render_child_clean( $content ); } return $this->render_child_classic( $content ); } /** * Render classic design. * * @access private * @since 1.0 * @param string $content The content. * @return string */ private function render_child_classic( $content ) { global $fusion_library; $inner_content = $thumbnail = $pic = ''; if ( $this->child_args['name'] ) { if ( 'image' === $this->child_args['avatar'] && $this->child_args['image'] ) { $image_data = $fusion_library->images->get_attachment_data_by_helper( $this->child_args['image_id'], $this->child_args['image'] ); $this->child_args['image_width'] = $image_data['width']; $this->child_args['image_height'] = $image_data['height']; $this->child_args['image_alt'] = $image_data['alt']; $pic = sprintf( '<img %s />', FusionBuilder::attributes( 'testimonials-shortcode-image' ) ); } if ( 'image' === $this->child_args['avatar'] && ! $this->child_args['image'] ) { $this->child_args['avatar'] = 'none'; } if ( 'none' !== $this->child_args['avatar'] ) { $thumbnail = sprintf( '<span %s>%s</span>', FusionBuilder::attributes( 'testimonials-shortcode-thumbnail' ), $pic ); } $inner_content .= sprintf( '<div %s>%s<span %s>', FusionBuilder::attributes( 'testimonials-shortcode-author' ), $thumbnail, FusionBuilder::attributes( 'company-name' ) ); if ( $this->child_args['name'] ) { $inner_content .= sprintf( '<strong>%s</strong>', $this->child_args['name'] ); } if ( $this->child_args['name'] && $this->child_args['company'] ) { $inner_content .= ', '; } if ( $this->child_args['company'] ) { if ( ! empty( $this->child_args['link'] ) && $this->child_args['link'] ) { $combined_attribs = 'target="' . $this->child_args['target'] . '"'; if ( '_blank' == $this->child_args['target'] ) { $combined_attribs = 'target="' . $this->child_args['target'] . '" rel="noopener noreferrer"'; } $inner_content .= sprintf( '<a href="%s" %s>%s</a>', $this->child_args['link'], $combined_attribs, sprintf( '<span>%s</span>', $this->child_args['company'] ) ); } else { $inner_content .= sprintf( '<span>%s</span>', $this->child_args['company'] ); } } $inner_content .= '</span></div>'; } $html = sprintf( '<div %s><blockquote><q %s>%s</q></blockquote>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode-review' ), FusionBuilder::attributes( 'testimonials-shortcode-quote' ), do_shortcode( $content ), $inner_content ); return $html; } /** * Render clean design. * * @access private * @since 1.0 * @param string $content The content. * @return string */ private function render_child_clean( $content ) { global $fusion_library; $thumbnail = $pic = $author = ''; if ( 'image' === $this->child_args['avatar'] && $this->child_args['image'] ) { $image_data = $fusion_library->images->get_attachment_data_by_helper( $this->child_args['image_id'], $this->child_args['image'] ); $this->child_args['image_width'] = $image_data['width']; $this->child_args['image_height'] = $image_data['height']; $this->child_args['image_alt'] = $image_data['alt']; $pic = sprintf( '<img %s />', FusionBuilder::attributes( 'testimonials-shortcode-image' ) ); } if ( 'image' === $this->child_args['avatar'] && ! $this->child_args['image'] ) { $this->child_args['avatar'] = 'none'; } if ( 'none' !== $this->child_args['avatar'] ) { $thumbnail = sprintf( '<div %s>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode-thumbnail' ), $pic ); } $author .= sprintf( '<div %s><span %s>', FusionBuilder::attributes( 'testimonials-shortcode-author' ), FusionBuilder::attributes( 'company-name' ) ); if ( $this->child_args['name'] ) { $author .= sprintf( '<strong>%s</strong>', $this->child_args['name'] ); } if ( $this->child_args['name'] && $this->child_args['company'] ) { $author .= ', '; } if ( $this->child_args['company'] ) { if ( ! empty( $this->child_args['link'] ) && $this->child_args['link'] ) { $author .= sprintf( '<a href="%s" target="%s">%s</a>', $this->child_args['link'], $this->child_args['target'], sprintf( '<span>%s</span>', $this->child_args['company'] ) ); } else { $author .= sprintf( '<span>%s</span>', $this->child_args['company'] ); } } $author .= '</span></div>'; $html = sprintf( '<div %s>%s<blockquote %s><q %s>%s</q></blockquote>%s</div>', FusionBuilder::attributes( 'testimonials-shortcode-review' ), $thumbnail, FusionBuilder::attributes( 'testimonials-shortcode-blockquote' ), FusionBuilder::attributes( 'testimonials-shortcode-quote' ), do_shortcode( $content ), $author ); return $html; } /** * Builds the blockquote attributes array. * * @access public * @since 1.0 * @return array */ public function blockquote_attr() { $attr = array( 'style' => '', ); $bgcolor = Fusion_Color::new_color( $this->parent_args['backgroundcolor'] ); if ( 'clean' === $this->parent_args['design'] && ( 'transparent' == $this->parent_args['backgroundcolor'] || '0' == $bgcolor->alpha ) ) { $attr['style'] .= 'margin: -25px;'; } $attr['style'] .= 'background-color:' . $this->parent_args['backgroundcolor'] . ';'; return $attr; } /** * Builds the quotes attributes array. * * @access public * @since 1.0 * @return array */ public function quote_attr() { return array( 'style' => 'background-color:' . $this->parent_args['backgroundcolor'] . ';color:' . $this->parent_args['textcolor'] . ';', 'class' => 'fusion-clearfix', ); } /** * Builds the review attributes array. * * @access public * @since 1.0 * @return array */ public function review_attr() { $attr = array( 'class' => 'review ', ); if ( 'none' === $this->child_args['avatar'] ) { $attr['class'] .= 'no-avatar'; } else if ( 'image' === $this->child_args['avatar'] ) { $attr['class'] .= 'avatar-image'; } else { $attr['class'] .= $this->child_args['avatar']; } return $attr; } /** * Builds the thumbnail attributes array. * * @access public * @since 1.0 * @return array */ public function thumbnail_attr() { $attr = array( 'class' => 'testimonial-thumbnail', ); if ( 'image' !== $this->child_args['avatar'] ) { $attr['class'] .= ' doe'; $attr['style'] = sprintf( 'color:%s;', $this->parent_args['textcolor'] ); } return $attr; } /** * Builds the image attributes array. * * @access public * @since 1.0 * @return array */ public function image_attr() { $attr = array( 'class' => 'testimonial-image', 'src' => $this->child_args['image'], 'width' => $this->child_args['image_width'], 'height' => $this->child_args['image_height'], 'alt' => $this->child_args['image_alt'], ); if ( $this->child_args['image_border_radius'] ) { $attr['style'] = sprintf( '-webkit-border-radius:%s;-moz-border-radius:%s;border-radius:%s;', $this->child_args['image_border_radius'], $this->child_args['image_border_radius'], $this->child_args['image_border_radius'] ); } return $attr; } /** * Builds the author attributes array. * * @access public * @since 1.0 * @return array */ public function author_attr() { return array( 'class' => 'author', 'style' => 'color:' . $this->parent_args['textcolor'] . ';', ); } /** * Builds the pagination attributes array. * * @access public * @since 1.0 * @return array */ public function pagination_attr() { return array( 'class' => 'testimonial-pagination', 'id' => 'fusion-testimonials-' . $this->testimonials_counter, ); } /** * Builds the dynamic styling. * * @access public * @since 1.1 * @return array */ public function add_styling() { global $wp_version, $content_media_query, $six_fourty_media_query, $three_twenty_six_fourty_media_query, $ipad_portrait_media_query, $fusion_library, $fusion_settings, $dynamic_css_helpers; $css['global']['.fusion-testimonials .author:after']['border-top-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_bg_color' ) ); $elements = array( '.fusion-testimonials .review blockquote q' ); $css['global'][ $dynamic_css_helpers->implode( $elements ) ]['background-color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_bg_color' ) ); $elements = array( '.fusion-testimonials .review blockquote q' ); $css['global'][ $dynamic_css_helpers->implode( $elements ) ]['color'] = $fusion_library->sanitize->color( $fusion_settings->get( 'testimonial_text_color' ) ); return $css; } /** * Adds settings to element options panel. * * @access public * @since 1.1 * @return array $sections Testimonials settings. */ public function add_options() { return array( 'testimonials_shortcode_section' => array( 'label' => esc_html__( 'Testimonials Element', 'fusion-builder' ), 'description' => '', 'id' => 'testimonials_shortcode_section', 'type' => 'accordion', 'fields' => array( 'testimonial_bg_color' => array( 'label' => esc_html__( 'Testimonial Background Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the testimonial background.', 'fusion-builder' ), 'id' => 'testimonial_bg_color', 'default' => '#f6f6f6', 'type' => 'color-alpha', ), 'testimonial_text_color' => array( 'label' => esc_html__( 'Testimonial Text Color', 'fusion-builder' ), 'description' => esc_html__( 'Controls the color of the testimonial text.', 'fusion-builder' ), 'id' => 'testimonial_text_color', 'default' => '#747474', 'type' => 'color-alpha', ), 'testimonials_speed' => array( 'label' => esc_html__( 'Testimonials Speed', 'fusion-builder' ), 'description' => __( 'Controls the speed of the testimonial slider. ex: 1000 = 1 second. <strong>IMPORTANT:</strong> Setting speed to 0 will disable autoplay for testimonials slider.', 'fusion-builder' ), 'id' => 'testimonials_speed', 'default' => '4000', 'type' => 'slider', 'choices' => array( 'min' => '0', 'max' => '20000', 'step' => '250', ), ), 'testimonials_random' => array( 'label' => esc_html__( 'Random Order', 'fusion-builder' ), 'description' => esc_html__( 'Turn on to display testimonials in a random order.', 'fusion-builder' ), 'id' => 'testimonials_random', 'default' => '0', 'type' => 'switch', ), ), ), ); } /** * Sets the necessary scripts. * * @access public * @since 1.1 * @return void */ public function add_scripts() { global $fusion_settings; Fusion_Dynamic_JS::enqueue_script( 'fusion-testimonials', FusionBuilder::$js_folder_url . '/general/fusion-testimonials.js', FusionBuilder::$js_folder_path . '/general/fusion-testimonials.js', array( 'jquery', 'jquery-cycle' ), '1', true ); Fusion_Dynamic_JS::localize_script( 'fusion-testimonials', 'fusionTestimonialVars', array( 'testimonials_speed' => intval( $fusion_settings->get( 'testimonials_speed' ) ), ) ); } } } new FusionSC_Testimonials(); } /** * Map shortcode to Fusion Builder. * * @since 1.0 */ function fusion_element_testimonials() { global $fusion_settings; fusion_builder_map( array( 'name' => esc_attr__( 'Testimonials', 'fusion-builder' ), 'shortcode' => 'fusion_testimonials', 'multi' => 'multi_element_parent', 'element_child' => 'fusion_testimonial', 'icon' => 'fusiona-bubbles', 'preview' => FUSION_BUILDER_PLUGIN_DIR . 'inc/templates/previews/fusion-testimonials-preview.php', 'preview_id' => 'fusion-builder-block-module-testimonials-preview-template', 'params' => array( array( 'type' => 'tinymce', 'heading' => esc_attr__( 'Content', 'fusion-builder' ), 'description' => esc_attr__( 'Enter some content for this contentbox.', 'fusion-builder' ), 'param_name' => 'element_content', 'value' => '[fusion_testimonial name="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" avatar="male" image="" image_border_radius="" company="' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '" link="" target="_self"]' . esc_attr__( 'Your Content Goes Here', 'fusion-builder' ) . '[/fusion_testimonial]', ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Design', 'fusion-builder' ), 'description' => esc_attr__( 'Choose a design for the element.', 'fusion-builder' ), 'param_name' => 'design', 'value' => array( 'classic' => esc_attr__( 'Classic', 'fusion-builder' ), 'clean' => esc_attr__( 'Clean', 'fusion-builder' ), ), 'default' => 'classic', ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Navigation Bullets', 'fusion-builder' ), 'description' => esc_attr__( 'Select to show navigation bullets.', 'fusion-builder' ), 'param_name' => 'navigation', 'value' => array( 'yes' => esc_attr__( 'Show', 'fusion-builder' ), 'no' => esc_attr__( 'Hide', 'fusion-builder' ), ), 'default' => 'no', ), array( 'type' => 'range', 'heading' => esc_attr__( 'Testimonials Speed', 'fusion-builder' ), 'description' => __( 'Set the speed of the testimonial slider. ex: 1000 = 1 second. <strong>IMPORTANT:</strong> Setting speed to 0 will disable autoplay for testimonials slider.', 'fusion-builder' ), 'param_name' => 'speed', 'default' => $fusion_settings->get( 'testimonials_speed' ), 'min' => '0', 'max' => '20000', 'step' => '250', ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Background Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the background color. ', 'fusion-builder' ), 'param_name' => 'backgroundcolor', 'value' => '', 'default' => $fusion_settings->get( 'testimonial_bg_color' ), ), array( 'type' => 'colorpickeralpha', 'heading' => esc_attr__( 'Text Color', 'fusion-builder' ), 'description' => esc_attr__( 'Controls the text color. ', 'fusion-builder' ), 'param_name' => 'textcolor', 'value' => '', 'default' => $fusion_settings->get( 'testimonial_text_color' ), ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Random Order', 'fusion-builder' ), 'description' => esc_attr__( 'Turn on to display testimonials in a random order.' ), 'param_name' => 'random', 'value' => array( '' => esc_attr__( 'Default', 'fusion-builder' ), 'yes' => esc_attr__( 'Yes', 'fusion-builder' ), 'no' => esc_attr__( 'No', 'fusion-builder' ), ), 'default' => '', ), array( 'type' => 'checkbox_button_set', 'heading' => esc_attr__( 'Element Visibility', 'fusion-builder' ), 'param_name' => 'hide_on_mobile', 'value' => fusion_builder_visibility_options( 'full' ), 'default' => fusion_builder_default_visibility( 'array' ), 'description' => esc_attr__( 'Choose to show or hide the element on small, medium or large screens. You can choose more than one at a time.', 'fusion-builder' ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'CSS Class', 'fusion-builder' ), 'description' => esc_attr__( 'Add a class to the wrapping HTML element.', 'fusion-builder' ), 'param_name' => 'class', 'value' => '', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'CSS ID', 'fusion-builder' ), 'description' => esc_attr__( 'Add an ID to the wrapping HTML element.', 'fusion-builder' ), 'param_name' => 'id', 'value' => '', 'group' => esc_attr__( 'General', 'fusion-builder' ), ), ), ) ); } add_action( 'fusion_builder_before_init', 'fusion_element_testimonials' ); /** * Map shortcode to Fusion Builder. * * @since 1.0 */ function fusion_element_testimonial() { fusion_builder_map( array( 'name' => esc_attr__( 'Testimonial', 'fusion-builder' ), 'shortcode' => 'fusion_testimonial', 'hide_from_builder' => true, 'allow_generator' => true, 'params' => array( array( 'type' => 'textfield', 'heading' => esc_attr__( 'Name', 'fusion-builder' ), 'description' => esc_attr__( 'Insert the name of the person.', 'fusion-builder' ), 'param_name' => 'name', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Avatar', 'fusion-builder' ), 'description' => esc_attr__( 'Choose which kind of Avatar to be displayed.', 'fusion-builder' ), 'param_name' => 'avatar', 'value' => array( 'male' => esc_attr__( 'Male', 'fusion-builder' ), 'female' => esc_attr__( 'Female', 'fusion-builder' ), 'image' => esc_attr__( 'Image', 'fusion-builder' ), 'none' => esc_attr__( 'None', 'fusion-builder' ), ), 'default' => 'male', ), array( 'type' => 'upload', 'heading' => esc_attr__( 'Custom Avatar', 'fusion-builder' ), 'description' => esc_attr__( 'Upload a custom avatar image.', 'fusion-builder' ), 'param_name' => 'image', 'value' => '', 'dependency' => array( array( 'element' => 'avatar', 'value' => 'image', 'operator' => '==', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Avatar Image ID', 'fusion-builder' ), 'description' => esc_attr__( 'Avatar Image ID from Media Library.', 'fusion-builder' ), 'param_name' => 'image_id', 'value' => '', 'hidden' => true, ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Border Radius', 'fusion-builder' ), 'description' => esc_attr__( 'Choose the radius of the testimonial image. In pixels (px), ex: 1px, or "round". ', 'fusion-builder' ), 'param_name' => 'image_border_radius', 'value' => '', 'dependency' => array( array( 'element' => 'avatar', 'value' => 'image', 'operator' => '==', ), ), ), array( 'type' => 'textfield', 'heading' => esc_attr__( 'Company', 'fusion-builder' ), 'description' => esc_attr__( 'Insert the name of the company.', 'fusion-builder' ), 'param_name' => 'company', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), array( 'type' => 'link_selector', 'heading' => esc_attr__( 'Link', 'fusion-builder' ), 'description' => esc_attr__( 'Add the URL the company name will link to.', 'fusion-builder' ), 'param_name' => 'link', 'value' => '', ), array( 'type' => 'radio_button_set', 'heading' => esc_attr__( 'Link Target', 'fusion-builder' ), 'description' => __( '_self = open in same window.<br />_blank = open in new window.', 'fusion-builder' ), 'param_name' => 'target', 'value' => array( '_self' => '_self', '_blank' => '_blank', ), 'default' => '_self', 'dependency' => array( array( 'element' => 'link', 'value' => '', 'operator' => '!=', ), ), ), array( 'type' => 'tinymce', 'heading' => esc_attr__( 'Testimonial Content', 'fusion-builder' ), 'description' => esc_attr__( 'Add the testimonial content.', 'fusion-builder' ), 'param_name' => 'element_content', 'value' => esc_attr__( 'Your Content Goes Here', 'fusion-builder' ), 'placeholder' => true, ), ), ) ); } add_action( 'fusion_builder_before_init', 'fusion_element_testimonial' );
[+]
..
[-] fusion-social-links.php
[edit]
[-] fusion-section-separator.php
[edit]
[-] fusion-sharingbox.php
[edit]
[-] fusion-column-inner.php
[edit]
[-] fusion-soundcloud.php
[edit]
[-] fusion-highlight.php
[edit]
[-] fusion-image-carousel.php
[edit]
[-] fusion-image.php
[edit]
[-] fusion-menu-anchor.php
[edit]
[-] fusion-woo-featured-products-slider.php
[edit]
[+]
js
[-] fusion-revolution-slider.php
[edit]
[-] fusion-slider.php
[edit]
[-] fusion-pricing-table.php
[edit]
[-] fusion-row-inner.php
[edit]
[-] fusion-tagline.php
[edit]
[-] fusion-one-page-link.php
[edit]
[-] fusion-separator.php
[edit]
[-] fusion-dropcap.php
[edit]
[-] fusion-image-before-after.php
[edit]
[-] fusion-woo-shortcodes.php
[edit]
[-] fusion-table.php
[edit]
[-] fusion-modal.php
[edit]
[-] fusion-fontawesome.php
[edit]
[-] fusion-woo-product-slider.php
[edit]
[-] fusion-layer-slider.php
[edit]
[-] fusion-youtube.php
[edit]
[-] fusion-blank-page.php
[edit]
[-] fusion-counters-box.php
[edit]
[-] fusion-gallery.php
[edit]
[-] fusion-tooltip.php
[edit]
[-] fusion-progress.php
[edit]
[-] fusion-countdown.php
[edit]
[-] fusion-recent-posts.php
[edit]
[-] fusion-blog.php
[edit]
[-] fusion-tabs.php
[edit]
[-] fusion-title.php
[edit]
[-] fusion-flip-boxes.php
[edit]
[-] fusion-row.php
[edit]
[-] fusion-button.php
[edit]
[-] fusion-alert.php
[edit]
[-] fusion-nextpage.php
[edit]
[-] fusion-code-block.php
[edit]
[-] fusion-chart.php
[edit]
[-] fusion-syntax-highlighter.php
[edit]
[-] fusion-container.php
[edit]
[-] fusion-content-boxes.php
[edit]
[-] fusion-lightbox.php
[edit]
[-] fusion-global.php
[edit]
[-] fusion-text.php
[edit]
[-] fusion-events.php
[edit]
[-] fusion-convertplus.php
[edit]
[-] fusion-testimonials.php
[edit]
[-] fusion-google-map.php
[edit]
[-] fusion-column.php
[edit]
[-] fusion-popover.php
[edit]
[-] fusion-checklist.php
[edit]
[-] fusion-toggle.php
[edit]
[-] fusion-vimeo.php
[edit]
[-] fusion-post-slider.php
[edit]
[-] fusion-user-login.php
[edit]
[-] fusion-person.php
[edit]
[-] fusion-counters-circle.php
[edit]
[-] fusion-widget-area.php
[edit]