[Minimal Theme] Set a minimum purchase quantity for a specific product via code

Hello, all! Wanted to ask around if anyone has ever done this.

We wanted to have a minimum purchase quantity for a specific product in the store. I was hoping to just have this coded since my boss prefers to minimize costs for the store.

I’ve already edited the product page successfully by editing the code in product-template.liquid into this:


  
  

Now, the current problem I only have is that the customer can still reduce the number of items they can purchase on the cart page. I’ve tested the codes below but they don’t seem to work:


  
  

Would appreciate if anyone can add in more info. Thanks!

I would use JavaScript and attach an event listener to the add to cart button / checkout button.

Then, if they click the add to cart button but haven’t met the minimum, rather than submitting the add to cart, you could make it show a message that says “You must purchase…”.

And on the cart page, same thing, you could have a message show if they haven’t met the minimum, and prevent them from checking out until they’ve satisfied that.