/
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
My theme already has a [testimonials] shortcode
My theme already has a [testimonials] shortcode
More like this
Can I change how quickly the testimonials change
Can I change how quickly the testimonials change
More like this
Only 2 of many testimonials are showing
Only 2 of many testimonials are showing
More like this
How do I use filter `testimonials_widget_defaults`
How do I use filter `testimonials_widget_defaults`
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
How do I disable the stylesheet
How do I disable the stylesheet
More like this