Hi,
It need customization in testimonial.php file at \wp-content\plugins\swift-framework\swift-framework\includes\page-builder\shortcodes
.
Find this code:-
$items .= '<li class="testimonial">';
$items .= '<div class="testimonial-text">' . do_shortcode( $testimonial_text ) . '</div>';
$items .= '<div class="testimonial-cite">';
if ( $testimonial_image ) {
$items .= '<img src="' . $testimonial_image[0] . '" width="' . $testimonial_image[1] . '" height="' . $testimonial_image[2] . '" alt="' . $testimonial_cite . '" />';
$items .= '<div class="cite-text has-cite-image"><span class="cite-name">' . $testimonial_cite . '</span><span>' . $testimonial_cite_subtext . '</span></div>';
} else {
$items .= '<div class="cite-text"><span class="cite-name">' . $testimonial_cite . '</span><span>' . $testimonial_cite_subtext . '</span></div>';
}
Change with:-
$items .= '<li class="testimonial">';
$items .= '<div class="testimonial-cite">';
if ( $testimonial_image ) {
$items .= '<img src="' . $testimonial_image[0] . '" width="' . $testimonial_image[1] . '" height="' . $testimonial_image[2] . '" alt="' . $testimonial_cite . '" />';
}
$items .= '<div class="testimonial-text">' . do_shortcode( $testimonial_text ) . '</div>';
$items .= '<div class="cite-text has-cite-image"><span class="cite-name">' . $testimonial_cite . '</span><span>' . $testimonial_cite_subtext . '</span></div>';