Edit CSS of a plugin
If you want to dequeue an enqueued style you need to use the wp_dequeue_style() function with the handle of the style you want to remove. The handle is the first argument of wp_register_style() and wp_enqueue_style(). In your case that’s stripe_styles. So if you want to deregister and dequeue it: wp_dequeue_style( ‘stripe_styles’ ); wp_deregister_style( ‘stripe_styles’ ); … Read more