Hide out of stock options
When to use this customization
Add custom CSS
1
2
3
/* Hide out-of-stock variants with strikethrough */
.strikethrough,
.linethrough {
display: none !important;
}
/* For dropdown options that are disabled */
select option:disabled {
display: none !important;
}4
How it works
Important notes
Last updated
Was this helpful?