/
How do I disable caching
How do I disable caching
You can disable caching via WP Admin > Testimonials > Settings > Premium tab and checking "Disable caching?" or likewise via shortcode widget options.
Alternately, in your theme’s functions.php
file, add similar code as follows.
add_filter( 'testimonials_widget_disable_cache', function() { return true; } );
or
function my_testimonials_widget_disable_cache() { return true; }
add_filter( 'testimonials_widget_disable_cache', 'my_testimonials_widget_disable_cache' );
Related content
How do I disable the stylesheet
How do I disable the stylesheet
More like this
Can I change how quickly the testimonials change
Can I change how quickly the testimonials change
More like this
How do I use filter `testimonials_widget_defaults`
How do I use filter `testimonials_widget_defaults`
More like this
How to change testimonials layout
How to change testimonials layout
More like this
How do I enable shortcodes in testimonial content
How do I enable shortcodes in testimonial content
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