If you are using WooCommerce for an online store plugin for your WordPress site, you may want to hide or remove the description tab on the WooCommerce Product Page. Just add this WordPress Code Snippet to your CSS stylesheet in your current WordPress theme in order to hide the description tab on product pages in WooCommerce.
/** * Remove/Hide WooCommerce Product Page description tab * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .single .woocommerce-tabs ul.tabs li.description_tab { display: none; }
Hope this helps with your WordPress problem, enjoy.
Tim Lester says
Works great but how do you now left align the description text since that tabs are gone?