Comments ubermenschdavid started the conversationJune 19, 2019 at 6:13pmHi thereCan anyone please tell me if there is any option to remove the product tabs?i can find a button to remove the reviews tab, but still i also want to remove the additional_information tab but can't find any way to do that. Will be happy for any advice about this issue. Thank you all! David 7,095Oliver repliedJune 20, 2019 at 8:21amHi,Add this code to the functions.php of the child theme: add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['description'] ); unset( $tabs['reviews'] ); unset( $tabs['additional_information'] ); return $tabs; } Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliverubermenschdavid repliedJuly 14, 2019 at 12:14amhi dearthank you, i will try that now :) 7,095Oliver repliedJuly 15, 2019 at 7:26amYou're welcome!Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Hi there
Can anyone please tell me if there is any option to remove the product tabs?
i can find a button to remove the reviews tab, but still i also want to remove the additional_information tab but can't find any way to do that.
Will be happy for any advice about this issue.
Thank you all!
David
Hi,
Add this code to the functions.php of the child theme:
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver
hi dear
thank you, i will try that now :)
You're welcome!
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver