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 />