'3', 'per_line_tablet' => '2', 'per_line_mobile' => '1', ), $atts); extract($settings); $output = '
'; $output .= do_shortcode($content); $output .= '
'; return apply_filters('lvca_testimonials_output', $output, $content, $settings); } public function child_shortcode_func($atts, $content = null, $tag) { $author = $credentials = $author_image = $animation = ''; $settings = shortcode_atts(array( 'author' => '', 'credentials' => '', 'author_image' => '', 'animation' => 'none' ), $atts); extract($settings); list($animate_class, $animation_attr) = lvca_get_animation_atts($animation); if (function_exists('wpb_js_remove_wpautop')) $content = wpb_js_remove_wpautop($content); // fix unclosed/unwanted paragraph tags in $content $output = '
'; $output .= '
'; $output .= do_shortcode(wp_kses_post($content)); $output .= '
'; $output .= '
'; $output .= '
'; $output .= wp_get_attachment_image($author_image, 'thumbnail', false, array('class' => 'lvca-image full')); $output .= '
'; $output .= '
'; $output .= '

' . esc_html($author) . '

'; $output .= '
' . wp_kses_post($credentials) . '
'; $output .= '
'; $output .= '
'; $output .= '
'; return apply_filters('lvca_testimonial_output', $output, $content, $settings); } function map_vc_element() { if (function_exists("vc_map")) { //Register "container" content element. It will hold all your inner (child) content elements vc_map(array( "name" => __("Testimonials", "livemesh-vc-addons"), "base" => "lvca_testimonials", "as_parent" => array('only' => 'lvca_testimonial'), // Use only|except attributes to limit child shortcodes (separate multiple values with comma) "content_element" => true, "show_settings_on_create" => true, "category" => __("Livemesh Addons", "livemesh-vc-addons"), "is_container" => true, 'description' => __('Display testimonials in a multi - column grid . ', 'livemesh - vc - addons'), "js_view" => 'VcColumnView', "icon" => 'icon - lvca - testimonials', "params" => array( array( "type" => "lvca_number", "param_name" => "per_line", "value" => 3, "min" => 1, "max" => 6, "suffix" => '', "heading" => __("Testimonials per row", "livemesh-vc-addons"), "description" => __("The number of columns to display per row of the testimonials", "livemesh-vc-addons") ), array( "type" => "lvca_number", "param_name" => "per_line_tablet", "value" => 2, "min" => 1, "max" => 6, "suffix" => '', "heading" => __("Testimonials per row in Tablet Resolution", "livemesh-vc-addons"), "description" => __("The number of columns to display per row of the testimonials in tablet resolution", "livemesh-vc-addons") ), array( "type" => "lvca_number", "param_name" => "per_line_mobile", "value" => 1, "min" => 1, "max" => 4, "suffix" => '', "heading" => __("Testimonials per row in Mobile Resolution", "livemesh-vc-addons"), "description" => __("The number of columns to display per row of the testimonials in mobile resolution", "livemesh-vc-addons") ), ), )); } } function map_child_vc_element() { if (function_exists("vc_map")) { vc_map(array( "name" => __("Testimonial", "my-text-domain"), "base" => "lvca_testimonial", "content_element" => true, "as_child" => array('only' => 'lvca_testimonials'), // Use only|except attributes to limit parent (separate multiple values with comma) "icon" => 'icon - lvca - testimonial', "category" => __("Livemesh Addons", "livemesh-vc-addons"), "params" => array( // add params same as with any other content element array( 'type' => 'textfield', 'param_name' => 'author', "admin_label" => true, 'heading' => __('Name', 'livemesh - vc - addons'), 'description' => __('The author of the testimonial', 'livemesh - vc - addons'), ), array( 'type' => 'textfield', 'param_name' => 'credentials', 'heading' => __('Author Details', 'livemesh - vc - addons'), 'description' => __('The details of the author like company name, position held, company URL etc . ', 'livemesh - vc - addons'), ), array( 'type' => 'attach_image', 'param_name' => 'author_image', 'heading' => __('Author Image', 'livemesh - vc - addons'), ), array( 'type' => 'textarea_html', 'param_name' => 'content', 'heading' => __('Text', 'livemesh - vc - addons'), 'description' => __('What your client / customer has to say', 'livemesh - vc - addons'), ), array( "type" => "dropdown", "param_name" => "animation", "heading" => __("Choose Animation Type", "livemesh-vc-addons"), 'value' => lvca_get_animation_options(), 'std' => 'none', 'group' => __('Settings', 'livemesh - vc - addons') ), ) ) ); } } } //Your "container" content element should extend WPBakeryShortCodesContainer class to inherit all required functionality if (class_exists('WPBakeryShortCodesContainer')) { class WPBakeryShortCode_lvca_testimonials extends WPBakeryShortCodesContainer { } } if (class_exists('WPBakeryShortCode')) { class WPBakeryShortCode_lvca_testimonial extends WPBakeryShortCode { } } // Initialize Element Class if (class_exists('LVCA_Testimonials')) { new LVCA_Testimonials(); }