Title: Remove the CSS
Last modified: August 22, 2016

---

# Remove the CSS

 *  Resolved [Tom Goering](https://wordpress.org/support/users/navycs/)
 * (@navycs)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/remove-the-css/)
 * I had all of the required CSS incorporated into my own single file before version
   3.2. And now, there is another one. How do I get rid of it — my visitors don’t
   need the extra round trip to the server to pic up a document they don’t need.
 * I want this line removed from my <head>,
 * `<link rel='stylesheet' id='jetpack_css-css' href='sitename/wp-content/plugins/
   jetpack/css/jetpack.css?ver=3.2' type='text/css' media='all' />`
 * I have this added to my functions that got rid of it before;
 *     ```
       function remove_jetpack_styles(){
       wp_deregister_style('jetpack-subscriptions'); // subscriptions
       }
       add_action('wp_print_styles', 'remove_jetpack_styles');
       ```
   
 * Thank you!!
 * [https://wordpress.org/plugins/jetpack/](https://wordpress.org/plugins/jetpack/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [Tom Goering](https://wordpress.org/support/users/navycs/)
 * (@navycs)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/remove-the-css/#post-5434195)
 * Never mind. I reverted back to version 3.1.1 and all is good again.
 * Here is a good tool from Google to check how much things can slow down your pages
   for both mobile and full screen.
 * [https://developers.google.com/speed/pagespeed/insights/](https://developers.google.com/speed/pagespeed/insights/)
 *  Plugin Author [Jeremy Herve](https://wordpress.org/support/users/jeherve/)
 * (@jeherve)
 * Jetpack Mechanic 🚀
 * [11 years, 7 months ago](https://wordpress.org/support/topic/remove-the-css/#post-5434237)
 * You can remove Jetpack’s concatenated CSS by adding the following to your theme’s
   functions.php file:
 * `add_filter( 'jetpack_implode_frontend_css', '__return_false' );`
 * That will allow you to use Jetpack 3.2 with your previous customizations.
 * I hope this helps.
 *  [olena seregina](https://wordpress.org/support/users/olena-seregina/)
 * (@olena-seregina)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/remove-the-css/#post-5434471)
 * it helped Thank you Jeremy Herve

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove the CSS’ is closed to new replies.

 * ![](https://ps.w.org/jetpack/assets/icon.svg?rev=2819237)
 * [Jetpack - WP Security, Backup, Speed, & Growth](https://wordpress.org/plugins/jetpack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/jetpack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/jetpack/)
 * [Active Topics](https://wordpress.org/support/plugin/jetpack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jetpack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jetpack/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [olena seregina](https://wordpress.org/support/users/olena-seregina/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/remove-the-css/#post-5434471)
 * Status: resolved