Best Multi Vendor Marketplace Plugin for WordPress › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Remove Reviews from Product Page
- This topic has 1 reply, 2 voices, and was last updated 5 years ago by
Sarmistha Chakraborty.
Viewing 1 reply thread
- AuthorPosts
- May 4, 2020 at 1:23 pm #126375
Jasmin Kronewetter
ParticipantI have turned off the Review Module in admin Store Settings but there is still a ‘Reviews’ tab on my product listing page.
Does anyone know how I can remove this? It seems that turning off the Review Module only turned off Store Reviews but Product Reviews remain.
Many thanks.
- May 4, 2020 at 1:57 pm #126394
Sarmistha Chakraborty
MemberHello,
Product review tab is the WooCommerce default feature, t’s not depends with our WCFM -plugin settings.
To remove review tab from product page, add below code in your theme’s functions.phpadd_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 ); function wcs_woo_remove_reviews_tab($tabs) { unset($tabs['reviews']); return $tabs; }
Thanks.
- AuthorPosts
Viewing 1 reply thread
- You must be logged in to reply to this topic.