Home New Guten Forums WoodMart support forum Customising product page additional information

Customising product page additional information

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #662199

    sannatidigital
    Participant

    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.
    #662221

    Luke Nielsen
    Keymaster

    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

    #662257

    sannatidigital
    Participant

    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.
    #662303

    Luke Nielsen
    Keymaster

    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

    #662361

    zenthmi
    Participant

    How to remove the tab “Additional information”, thanks

    #662399

    Luke Nielsen
    Keymaster

    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

Viewing 6 posts - 1 through 6 (of 6 total)