I previously had hidden the discount code box as I do not use codes, however a post checkout app installation has re-added this and I can’t seem to hide it.
Is there some code I can inject to hide the discount box? Store is Debut theme.
Willing to pay $5 on paypal if you can help with the code!
To hide the discount code box in your Shopify store using the Debut theme, you can add some custom CSS to your theme’s settings.
Follow these steps:
Online Store > Themes > Edit Code
In the left sidebar, look for the Assets folder and click on the theme.css or theme.scss file (depending on your theme version).
Scroll to the bottom of the file and add the following CSS code:
.discount {
display: none !important;
}
This code hides the discount code box by setting its display property to none. If you need further adjustments or the discount box still appears, let me know!
If I was able to help you, please don’t forget to Like and mark it as the Solution!