This topic has 4 replies, 2 voices, and was last updated 6 years, 6 months ago ago by Rose Tyler
Is it possible to disable the single projects tab on single products and only have the description here? Client does use the more information tab so it is only showing shipping info which isn’t relevant to their customers.
Thanks in advance.
Hello,
Please read – https://docs.woocommerce.com/document/editing-product-data-tabs/ (add code in functions.php file of child theme).
Regards
Hi
I’ve tried adding the code in the doc but it doesn’t seem to work? I have removed it for now as clear I must have been adding it incorrectly.
Many Thanks
Chris
Hello,
You need to open functions.php file via FTP (legenda-child folder) and add this code:
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;
}
http://prntscr.com/jeor2q
Make sure that the child theme is activated on your site (Appearance > Themes).
Regards
You must be logged in to reply to this topic.Log in/Sign up