This topic has 4 replies, 2 voices, and was last updated 9 years, 4 months ago ago by Eva Kemp
Dear team,
how can I remove returns and delivery and review tab? thank you!
I tried to add some code in custom.css file, no success.
thank you in advance!
Hello,
You can remove “Returns and Delivery” tab in Theme Options > Single Product Page > Custom Tab title and clear the content.
To remove “Review” tab you can follow this instruction:
http://docs.woothemes.com/document/editing-product-data-tabs/
Regards,
Eva Kemp.
Thank you, Eva.
I added the custom.css file with these lines:
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;
}
but nothing happend. What I do wrong?
Thank you!
Hello,
That code must be added into functions.php file in wp-content/themes/woopress directory.
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up