/
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 include testimonies in my category or archive view
How do I include testimonies in my category or archive view
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 change the testimonials archive or single view URL
How do I change the testimonials archive or single view URL
More like this
How to change testimonials layout
How to change testimonials layout
More like this
How do you display 2 testimonials in one widget
How do you display 2 testimonials in one widget
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