How to un-hide the coupon in Woocommerce checkout page

Multi tool use
How to un-hide the coupon in Woocommerce checkout page
There is a link right under the checkout header on Woocommerce that says "Click here to enter your code". When you click it, a javascript slides the billing details box down to show the coupon code box and "apply coupon" button.
I am trying to make this show automatically on the page load.
The other option is to change the javascript from a click action to a page load action.
1 Answer
1
Write in your custom CSS:
.checkout_coupon {
display: block !important;
}
.woocommerce-info {
display:none;
}
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.