Force discount code/expand order summary by default

Hi Shopify community!

I’ve been looking for a way to expand the order summary by default on checkout however this mission appears to be fruitless unless I’ve been looking in all the wrong places… I present two questions to the community:

  1. Is there any way to expand the order summary by default on Shopify Plus stores?
  2. If not, could I have a little technical guidance on implementing the following code to FORCE a discount code application? I believe I need to add this: to the cart.liquid page, but am not sure where I need to add it. Please find the current code here: https://textuploader.com/1k7tq!

Any help would be greatly appreciated.

Alex

On Plus you have access to checkout.liquid.

Try something along these lines of CSS:

      .order-summary-toggle {
         display: none;
      }
      
      .js .order-summary--is-collapsed {
        height: auto;
        visibility: visible;
      }

Since the site is no longer active, do you have anything to post here ?