Hello,
We tested your scenario at our end. This issue is because, your shortcode /template tag of Testimonial Slider is in between
<pre> tag. If you are using shortcode then replace previous shortcode by following shortcode:
[raw][testimonialslider id="1" set="1"][/raw]
For using [raw] shortcode you need to add following code in your current theme’s functions.php file:
function my_formatter($content) {
$new_content = '';
$pattern_full = '{(\[raw\].*?\[/raw\])}is';
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($pieces as $piece) {
if (preg_match($pattern_contents, $piece, $matches)) {
$new_content .= $matches[1];
} else {
$new_content .= wptexturize(wpautop($piece));
}
}
return $new_content;
}
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'my_formatter', 99);
Let me know if it helps,
Thanks for all your patience.
Best Regards,
Sampada,
SliderVilla Support Team