I’m having issues with my site , no matter what size is selected for the items customers select the size will only show as small even if it’s been selected as something else please can someone advise why this is happening.
Somebody tried to add code to update cart button based on variant inventory, but it was not done fully. Here is the code – it fails because inv_qty array is not defined.
var bcd1=inv_qty[ variant.id ];
if(bcd1<1){
var html23='Pre order';
cache.$addToCartText.html(html23);
}
else{
cache.$addToCartText.html(theme.strings.addToCart);
}