If you are using WooCommerce for an online store plugin for your WordPress site, you may want to hide or remove the description and reviews tabs 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 and reviews tabs on product pages in WooCommerce.
/** * Remove/Hide WooCommerce Product Page tabs * * @author WPSnacks.com * @link https://www.wpsnacks.com */ .single .woocommerce-tabs ul.tabs { display: none; }
Hope this helps with your WordPress problem, enjoy.
Leave a Reply