BUMP! (only because I didn't receive a reply to the earlier thread in this post, and have been unable to resolve this problem- at present it's crippling my progress in making the store go live)
I have a problem with my store.
I can add a product to the shopping cart when the product has no attributes, but if the product has attributes, it is not possible to click on the 'add to cart' button. (I have sba v4.4 installed using Zen Cart 1.3.7.1, and, as far as I can tell, all the relevant files for the mod are in the correct places)
The button appears to be disabled when the customer wishes to add a product to the cart, and since this seems to be the case only for products with attributes, I am assuming that the problem is related to sba.
I have double-checked everything, as far as I can, but I don't seem to be able to fix the problem - can anyone shed some light on what might be causing this critical phenomenon, PLEASE?
Here's the generated html code for the 'dead' button, but as far as I can tell, it appears to be an active 'input' item which actually identifies the products ID:
HTML Code:
<!--bof Add to Cart Box -->
<div id="cartAdd">
Add to Cart:
<input name="cart_quantity" value="1" maxlength="6" size="4" type="text">
<br><br><input name="products_id" value="330" type="hidden">
<input src="includes/templates/template_default/buttons/english/button_in_cart.gif" alt="Add to Cart" title=" Add to Cart " type="image">
</div>
<!--eof Add to Cart Box-->
The products ID value is correct, but there doesn't seem to be any value for the Stock ID created by sba.
Now here's the code for an add to cart button for an item that doesn't have any attribute 'variants':
HTML Code:
<!--bof Add to Cart Box -->
<div id="cartAdd">
Add to Cart:
<input name="cart_quantity" value="1" maxlength="6" size="4" type="text">
<br><br><input name="products_id" value="276" type="hidden">
<input src="includes/templates/template_default/buttons/english/button_in_cart.gif" alt="Add to Cart" title=" Add to Cart " type="image">
</div>
<!--eof Add to Cart Box-->
Now, since the code for these buttons appears to be identical, withe exception of the products ID, can anyone cast any light as to why one working and the other NOT?
Bookmarks