Remove tab in product information
-
how i can remove the description tab in a product page, not the information above but the tab below.
Attachments:
You must be
logged in to view attached files.
Hello,
Tabs are the functionality of WooCommerce and our theme does not influence it.
Here is the documentation allowing you to manage tabs:
https://docs.woocommerce.com/document/editing-product-data-tabs/
OR
You can try the below custom CSS code to hide this tab and paste the CSS in Theme Settings >> Custom CSS >> Global CSS section:
.woocommerce-tabs.wc-tabs-wrapper.tabs-layout-accordion.wd-accordion.wd-style-default {
display: none;
}
Best Regards.