/
How do I change the ‘… Read more’ text

How do I change the ‘… Read more’ text

In your theme’s functions.php file, add similar code as follows.

add_filter( 'testimonials_widget_premium_more_ellipsis', function() { return ' '; } );
add_filter( 'testimonials_widget_premium_more_text', function() { return ' Continue reading →'; } );

or

function my_testimonials_widget_premium_more_ellipsis() { return ' Continue reading →'; }
add_filter( 'testimonials_widget_premium_more_ellipsis', 'my_testimonials_widget_premium_more_ellipsis' );
function my_content_more() { return ' '; }
add_filter( 'testimonials_widget_premium_more_text', 'my_content_more' );

Related content

How do I change the more content ellipsis
How do I change the more content ellipsis
More like this
How do I change the ‘Next testimonial…’ text
How do I change the ‘Next testimonial…’ text
More like this
How do I change the ‘Complete testimonial by ‘ link title text
How do I change the ‘Complete testimonial by ‘ link title text
More like this
Why should I purchase the Testimonials Premium
Why should I purchase the Testimonials Premium
More like this
How do I customize my testimonial list and widget output
How do I customize my testimonial list and widget output
More like this