Customising product page additional information
-
Hi, kindly advise on customizing the “Additional Information” section on a WooCommerce product page if it is doable from the GUI of the theme without coding. Thanks.
Attachments:
You must be
logged in to view attached files.
Hello,
With the help of Layouts, you can change it in such a way – https://prnt.sc/GJGmCGP9TJEK
Page from our demo – https://woodmart.xtemos.com/mega-electronics/product/acer-conceptd-7-ezel/
Also, you can import such a page via Layouts -> Add new: https://prnt.sc/cRoG3aPYKDMJ
Kind Regards
My question was how to change or remove it from existing product pages, please. I have already created few. Kindly suggest the fix. Thanks. can you kindly refer to the screenshot, I need to relove these colors or the additional information tab, because my product doesn’t feature different colors.
Attachments:
You must be
logged in to view attached files.
Hello,
Those colors come from the settings of the product, so to remove them you need to edit the product and remove it from the attributes area – https://prnt.sc/XoHCXOlZyudr
Kind Regards
How to remove the tab “Additional information”, thanks
Hello,
Use the code below to remove the additional information tab.
add_filter( 'woocommerce_product_tabs', 'bbloomer_remove_product_tabs', 9999 );
function bbloomer_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] );
return $tabs;
}
Paste the code in the functions.php file in your child theme.
Kind Regards