I have enabled order notes, but is there a way to keep the accordion expanded at all times?

I have enabled order notes in my cart, but is there a way to keep the accordion expanded at all times so the text field always shows? See photo below. I am using the Broadcast theme.

Add this snippet to the bottom of the theme.css file (should be in the theme assets folder, may also be called theme.css.liquid):

.cart__widget a[href="#notes"]:after, .cart__widget a[href="#notes"]:before {
    display: none;
}

.cart__widget #notes {
    display: block !important;
}

This will force the drawer open, and hide the +/- toggle.

This worked!! Thank you so so much!

1 Like