I would like to set the inventory threshold to 99 on my product page. Currently, the maximum I can set through theme customization is 40, and I haven’t found a way to increase it to 99.
Could someone assist me in raising this threshold to 99?
product link: https://testingstoresandthemes.myshopify.com/products/600ml-shaker?variant=44557536428277
Password: lock
Thank you
Do you want all products to be 99 or just that one product?
To do this. Need to edit liquid code on your theme. To do this, please message me for help. @technase
This can be done by modifying your theme code. You can use this code
{% if product.available and product.variants.first.inventory_quantity <= 99 %}
{{ product.variants.first.inventory_quantity }} items left
{% endif %}
Do I add this code to theme.liquid or style.css ?