This topic has 4 replies, 2 voices, and was last updated 8 years, 5 months ago ago by 8theme
Hi,
I dont wanted to show the product information tab on the product page. How can I do that. Please help me.
Hi,
Thank you for being with us.
Here is a code snippet you need to add to your child theme functions.php file remove this tab from the product page
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
Thanks, really appreciated
You are welcome! If you like our theme your good comment and 5 stars rating would be much appreciated. You can do it in your Downloads area https://themeforest.net/downloads
Feel free to contact us if you need any other help.
Thanks!
Regards
The issue related to '‘Product information Tab’' has been successfully resolved, and the topic is now closed for further responses