Hi, how do I get rid of the stock level count showing on my product pages?
I want to keep the quantity selector but I want to remove the stock showing
Hi, how do I get rid of the stock level count showing on my product pages?
I want to keep the quantity selector but I want to remove the stock showing
Can you share the store URL so we I can send you the exact code which will help to get rid of this?
First of all, you must check if there is an option to hide this from the customization section, if you could not find that then add the following at the end of Online Store->Theme->Edit code->Assets->theme.scss.css
.product__content .inventoryWrapper {
display: none;
}
This should work fine.
Yay that worked!! Thank you so much for your help!