Home Forums WoodMart support forum remove additional information

remove additional information

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #158519

    masood nikroo
    Participant

    Hello,
    i want to remove addtional information from checkout.
    https://prnt.sc/q0xxag
    Regards.

    #158530

    Hello,

    To remove the additional information from the checkout page. You can use the below code in funtions.php file:

    add_filter( 'woocommerce_checkout_fields' , 'remove_order_notes' );
    
    function remove_order_notes( $fields ) {
         unset($fields['order']['order_comments']);
         return $fields;
    }

    Best Regards.

    #158834

    masood nikroo
    Participant

    Hello,
    how to remove additional information text on my checkout?
    https://prnt.sc/q1qlwx
    Regards.

    #158868

    Hello,

    To hide the additional information text from my checkout page. You can use the below CSS code in theme settings >> custom CSS >> global custom CSS.

    .woocommerce-additional-fields h3{
    display:none;
    }

    Result: https://jmp.sh/7yo9tX2

    Best Regards.

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