/
How do I add testimonial excerpt to single view
How do I add testimonial excerpt to single view
In your theme’s functions.php
file, add similar code as follows.
function my_testimonials_widget_defaults_single( $array )
$array['hide_excerpt'] = 'false';
return $array;
}
add_filter( 'testimonials_widget_defaults_single', 'my_testimonials_widget_defaults_single' );
Related content
How do I customize my testimonials single layout
How do I customize my testimonials single layout
More like this
How do I customize my testimonial single output
How do I customize my testimonial single output
More like this
How do I show the expert and hide the image in the testimonial single view
How do I show the expert and hide the image in the testimonial single view
More like this
Do testimonials have there own URL
Do testimonials have there own URL
More like this
How to change testimonials layout
How to change testimonials layout
More like this
How do I filter the testimonials data before display processing
How do I filter the testimonials data before display processing
More like this