/
How do I disable the stylesheet
How do I disable the stylesheet
Solution
In your theme’s functions.php
file, add the following.
add_action( 'init', 'my_init' ); function my_init() { wp_dequeue_style( 'testimonials-widget' ); }<p />
Related articles
, multiple selections available,
Related content
How do I disable caching
How do I disable caching
More like this
How to Debug and Correct CSS Issues in Your Browser
How to Debug and Correct CSS Issues in Your Browser
More like this
How do I remove the cite or credit block
How do I remove the cite or credit block
More like this
How do I apply custom CSS to a specific testimonial widget
How do I apply custom CSS to a specific testimonial widget
More like this
How do I style about page testimonials while leaving other testimonials alone or vice versa
How do I style about page testimonials while leaving other testimonials alone or vice versa
More like this
What CSS applies to testimonials container
What CSS applies to testimonials container
More like this