how to hide Description / Reviews (0) / Shipping & Delivery
-
how to hide Description / Reviews (0) / Shipping & Delivery section from individual product page?
Attachments:
You must be
logged in to view attached files.
Hello
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['description'] ); // Remove the description tab
unset( $tabs['reviews'] ); // Remove the reviews tab
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
Kind Regards
You are always welcome. Feel free to contact us if you have any further questions.
The topic ‘how to hide Description / Reviews (0) / Shipping & Delivery’ is closed to new replies.