I have updated several products via re-uploading them in a csv file, and now the “add to cart” button isn’t clickable. I haven’t changed anything else about the site, and it is affecting all the products up for sale. I did make some changes to option sets in Bold, but not to enough sets to affect all the products, there were some sets I didn’t touch at all.
Did you check to see if the “add to cart” button is still clickable on the products that you updated? If it is, then it sounds like the issue may be with the products that you didn’t update.
If the issue is with the theme, it’s likely that a setting was changed that is affecting all the products. The theme developer should be able to help you figure out what’s going on and how to fix it. You could also attempt to use this JS code. $(‘.add-to-cart-button’).click(function() { $.ajax({ type: ‘POST’, url: ‘/cart/add.js’, data: { quantity: 1, id: $(this).data(‘product-id’) }, dataType: ‘json’, success: function(product) { $(‘.add-to-cart-button’).text(‘Added to cart’); }, error: function(XMLHttpRequest, textStatus) { $(‘.add-to-cart-button’).text(‘Error!’); } }); });