Not hidden the introduce coupon menu when a coupon is introduced

Hi. I wonder if it is related to the PRO theme or not or if you can help me with this.

In the checkout menu of our website: https://www.edinventa.com/checkout/

When I introduce a coupon code, the menu to introduce another coupon disappear. Do you know why and how to avoid this behaviour?

Thanks

Carlos

Hola Carlos!

That would be more WooCommerce related I believe.

Where did you set the coupon settings? Can you explain further, maybe there is a toggle to allow more than one coupon, let us know more details so we can help you solving the problem.

Thanks!

When I apply a coupon the “apply coupon menu” disappear:

It can be something of the one page checkout plugin, but PRO also modify Woocommerce so that’s why I’m asking.

Thanks

Carlos

Hi There,

Do you want the coupon field always display?

To do that, please add this custom CSS under X > Theme Options > CSS:

form.checkout_coupon {
    display: block !important;
}

Let us know how it goes!

It works! However I wonder if instead how it’s shown:

You can give us another MAGIC css code to shown the menu:

Thank youuu :slight_smile:

Hi There,

Please also add this custom CSS:

.wcopc .woocommerce-info.x-alert.x-alert-info.x-alert-block {
    display: none;
}

Regards!

That does NOT work. It shows nothing if I add just:

.wcopc .woocommerce-info.x-alert.x-alert-info.x-alert-block {
    display: none;
}

It shows the same than the previous answer if I add both pieces of code:

form.checkout_coupon {
    display: block !important;
}
.wcopc .woocommerce-info.x-alert.x-alert-info.x-alert-block {
    display: none;
}

I want the following:

Hey there,

Please remove this code:

form.checkout_coupon {
    display: block !important;
}

And add this code in your Customizer:

.wcopc .woocommerce-info.x-alert.x-alert-info.x-alert-block {
    display: block !important;
}

Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

I appreciate your help a lot… Unfortunately that CSS does not work. If a coupon code is already introduced, it shows no menu to introduce other coupons:

Any other idea? :confused:

Hi there,

It’s Woocommerce functionality, and it’s only meant to use coupon per session. I would recommend contacting a Woocommerce developer in this case.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.