Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #841409

    The page I’m working on is:

    How do I remove “Additional Information” section and then center the “Billing Details” to the middle of the page?

    View post on imgur.com

    This is the code I tried yet it didn’t work yet:

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

    add_filter( ‘woocommerce_enable_order_notes_field’, ‘__return_false’ );

    #841493

    Hey Nathan,

    I’m not seeing any content on that page at all. Can you please double-check?

    Best regards,
    Jordan Shannon

    #841522

    I see it
    I’m using google chrome browser

    #841766

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top .checkout .col-2 {display:none !important; max-width: 1px !important; }
    #top .checkout .col-1 {min-width: 100% !important; }
    .page-id-608 div.entry-content {padding: 0 15% !important; }

    2017-08-20_153041

    Best regards,
    Mike

    #841802

    It’s still showing up in “In-Person BodyTalk Session” and the other products too

    View post on imgur.com

    #842090

    Hi,

    Add the following to quick css:

    .woocommerce .woocommerce-message{
    display:none!important;
    }
    
    .col-2 .woocommerce-additional-fields{
    display:none!important;
    }
    
    .col2-set .col-1{
    width:100%!important;
    }

    Best regards,
    Jordan Shannon

    #842097

    No changes yet:

    #842102

    When I entered the code in the “Quick CSS” area and noticed there was no change

    then I entered it here:

    View post on imgur.com

    and it worked

    I feel thankful for the support Mike and Jordan this topic is resolved! :)

    #842110

    Hi,

    Great! I’m glad this was able to be solved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Remove "Additional Information" section and center the "Billing Details"’ is closed to new replies.