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.
- 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.
- Go to “Appearance->Custom CSS”.
- 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; }