How can I remove the “Additional Information” tab on a product, but keep the Review tab?
See this page: https://roadies.wpengine.com/product/hiking/
Thanks,
Ginny
Hey ginnywills,
Please try the following in Quick CSS under Enfold->General Styling:
.additional_information_tab, .woocommerce-Tabs-panel--additional_information {
display:none;
}
Best regards,
Rikard
Hi
Thanks for the response but that didn’t work. It removed the tab, but not the panel of information.
I also added the following, but that doesn’t work either:
.woocommerce-Tabs-panel woocommerce-Tabs-panel–additional_information panel entry-content wc-tab {
display:none;
}
Any other ideas?
Hi,
Please add following code to Functions.php file in Appearance > Editor
add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98 );
function av_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
Best regards,
Yigit
Perfect! Thanks!
Hi,
You are welcome! :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)
Best regards,
Yigit