This topic has 8 replies, 4 voices, and was last updated 8 years, 11 months ago ago by Robert Hall
How can I remove the review tab from the product page?
Hello,
Navigate to Dashboard->Products->edit product->Product Data->Advanced->then uncheck reviews option.
Regards,
Robert Hall.
But While doing that My other Description tabs also get removed.
I just want to remove the review tabs and add some custom tab there
Hello
Please add this code into the custom.css:
#tab-description{display:none}
and create other custom tabs.
Regards,
Brian Johnson
Not working buddy. I have added this code but review tab is still visible.
Hello,
I’ve added the code (taken from woodocs https://docs.woothemes.com/document/editing-product-data-tabs/) in the functions.php file:
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['reviews'] ); // Remove the reviews tab
return $tabs;
}
Please check your site now.
Best regards,
Jack Richardson.
Yeah That worked for me. Thank You Very much buddy
Hello,
You’re welcome!
Regards,
Robert Hall.
The issue related to '‘remove review tab’' has been successfully resolved, and the topic is now closed for further responses