- This topic has 3 replies, 2 voices, and was last updated 2 years, 10 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Repository › Forums › Support › WooCommerce Extended Coupon Features PRO › hide out of stock variations from free product offer
I am giving away a free with purchase variable product, but some of the variations are out of stock.
Is there a way to only show available variations?
https://marcumtech.com/cart/?add-to-cart=1128&quantity=1&apply_coupon=givethanks
Thank you for your time.
On the Edit Coupon page: instead of selecting the variable (parent) product, select the variations.
I changed to the variable products instead of the parent and now I only show the in-stock options.
The problem now is that no options show up in mobile, only desktop.
I found another thread that spoke to this issue, and it said this was solved with updating your plugin past 3.0.2
We have ver 3.2 installed. Is there something else i should be looking for?
It’s hidden by the following CSS rule in your theme (thegem-marcum/style.css) .
@media (max-width: 992px) {
.woocommerce-cart-form {
display: none;
}
.woocommerce-cart-form.responsive {
display: block;
}
}