How to Hide Product Description in WooCommerce

If you are a WooCommerce user and do not wish to display product description on the front end you can apply this simple CSS tweak to hide it.

  1. Install the Simple Custom CSS plugin from here: https://wordpress.org/plugins/simple-custom-css/. You can either download the zip file and upload manually or install it directly from the plugins menu of your admin dashboard.
  2. Go to “Appearance->Custom CSS”.
  3. Add this piece of CSS code in the Simple Custom CSS texarea:
#tab-description {
display:none !important;
}

If you just want to hide the “Product Description” header in the Description tab you can apply this tweak instead:

#tab-description h2 {
display:none !important;
}

Leave a Comment