X

How to Deregister Contact Form 7 CSS Style Sheet

Snippets by IsItWP

Are you looking for a way to deregister Contact Form 7 CSS style sheet? While there’s probably a plugin for this, we have created a quick code snippet that you can use to deregister Contact Form 7 CSS style sheet.

Instructions:

All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:

add_action( 'wp_print_styles', 'wps_deregister_styles', 100 );
function wps_deregister_styles() {
    wp_deregister_style( 'contact-form-7' );
}

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 15 best content marketing plugins for WordPress and how to fix the error establishing a database connection in WordPress.

Comments   Leave a Reply

  1. Thank you very much.. After trying a lot of things, I finally realized that the problem was domain-text..
    not contact-form-7-style, only contact-form-7..

  2. Thanks for this code snippet. Might also be worth informing your ‘non-technical’ readers that doing this may cause their contact form to appear ‘broken’ as it removes the CSS styles associated with contact forms.

  3. You can also add ‘define( ‘WPCF7_LOAD_CSS’, false );’ in wp-config.php 😉

Add a Comment Cancel reply

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!