• Resolved irik

    (@irik)


    Hello!

    I want to remove only the heading “Additional information” on the checkout page and the accompanying line underneath the heading. But I want to retain the textarea and make it look like a part of the billing form above it. Does anyone know how to do this? (I have seen solutions on how to remove the whole Additional Information area, but since I want to retain the textarea, that will not work)

Viewing 4 replies - 1 through 4 (of 4 total)
  • Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @irik.

    You could use some CSS to remove that. Could you please let me know what theme you are currently using, or link me to your site so I can take a closer look?

    Cheers!

    Thread Starter irik

    (@irik)

    Thanks for fast reply, @rynald0s ??
    We use Astra theme.

    Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @irik

    You could try the following CSS:

    div.woocommerce-additional-fields > h3 {
    display: none;
    }
    
    #order_comments_field > label {
    display: none;
    }

    Please add that to the “Additional CSS” section found in your customizer.

    If that does’t work, please provide a link to your site.

    Cheers!

    Thread Starter irik

    (@irik)

    Great, that did the trick! (I deleted the last part of the code, about the label, since I figured it was best to retain that as well, but now the heading is gone – good!)

    Thank you very much ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove “Additional information” heading’ is closed to new replies.