how to hide/remove “Reviews” title in Reviews tab
-
On the product page, under product tabs, I want to remove the huge titles that shows when you click on a tab.
For description, I easily found a solution that works:
add_filter( ‘woocommerce_product_description_heading’, ‘__return_null’ );But I can’t find a solution for the Reviews tab
You would think that logically, it would be something like
add_filter( ‘woocommerce_product_reviews_heading’, ‘__return_null’ );
or
add_filter( ‘woocommerce_reviews_heading’, ‘__return_null’ );But nope. Those don’t work.
Does anyone know how I can remove that Reviews title under the tab?
Thanks
The topic ‘how to hide/remove “Reviews” title in Reviews tab’ is closed to new replies.