Hi @SunShopp ,
Sorry, quantity is still changing in JS, so you need to change more code in theme.min.js file.
Go to Assets > theme.min.js , find ‘.js-qty__adjust–minus’ and add code here:
https://i.imgur.com/kSNaywk.png , Code: this.maxValue = this.input.getAttribute(“max”) || 1
Find ‘this._change(this._getQty())’ and change code:
this._change(this._getQty())
=>
var e = this._getQty();
if (e >= this.maxValue) {
e = this.maxValue;
}
this._change(e);
Refer https://i.imgur.com/iuTVt0w.png
Hope it helps!