How to Change options on Buy Button Notifications

I’m using a Multi-Discount App but it can only be applied at the Cart and not at Checkout.

Is there a way I can direct my customers to the “cart” before check out? I would like to eliminate the ability to go straight to Check Out to avoid confusion when they are not able to add in multiple discounts.

I have success removing the option from the Buy Button by removing the “Dynamic Checkout”. But I’m having a hard time locating how to change the notifications. I’ve added a screen shot.

Let me know if you have any suggestions.

Thanks in advance!

Hi @AnchoredPrints ,

It would be best to mention your website or theme atleast since every website or theme has different way of writing the code.

If you are using any of the Shopify 2.0 FREE themes. Follow the instructions below to hide the checkout button on the notification.

  1. In your Admin page, go to Online store > Themes
  2. Choose the theme you want to edit then click Actions > Edit code.
  3. Open the base.css under the Asset folder.
  4. Add the code below.
button[name="checkout"] {
display: none !important
}