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