Get Rid of Additional Information in WooCommerce Products
I'm trying to get rid of the "Additional Information" box in my WooCommerce Products and i can't seem to do it.
I try adding the following CSS in the Theme Options CSS tab. No Change
/* To hide the additional information tab */
li.additional_information_tab {
display: none !important;
}
I then tried adding the following PHP in the file manager:
englishcocker.org> Public_html> wp-content> themes> betheme-child
/** Remove product data tabs */
add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
function my_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] ); // To remove the additional information tab
return $tabs;
}
No change.
Please can you tell me what else i can do to remove the Additional Information box from my WC Products.
Terry
Comments
Hi,
Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.
Thanks
site is
I have login credentials for BE support. do you want me to send those to you using the secure note function?
Terry
You will have to create a custom template for products.
Please, check the following video tutorial:
https://support.muffingroup.com/video-tutorials/how-to-create-custom-template-for-the-single-product/
Best regards
Phil,
Will the custom template work for a Variable product product page?
Did you use the variations from WooCommerce and Betheme, or do you have some external plugins for them?
It should work fine, but I cannot guarantee it if you are using some third-party plugin.
You can test the template by assigning it to one product for a test.
Best regards