Hello everyone!
This form is a blessing! Thank you all for all of your wonderful contributions and your help! I have searched the forums for the quantity issue I have encountered but wasn't able to find a solution. Here's my problem:
I DO NOT HAVE A QUANTITY BOX IN PRODUCT INFO PAGE - the actual product description pages - so the user cannot order more then one item at a time.
I have configured all the obvious ADMIN settings : here are the ones that have the quantity settings whjch I turned on:
1) Catalog -> Product Type -> Product General:Show Quantity in Shopping Cart = SET TO 1Show Quantity in Stock = SET TO 1
2) Configuration -> Product Info -> Product Info Quantity Box Status - Adding New Products = SET TO 1
3) Configuration -> All listings -> Display Product Quantity = SET TO 1202
Second thing I checked was the "tpl_product_info_display.php" file - but didn't figure out what needed to be done there. I have a feeling there might be something wrong here. Just in case, I'm going to list one of the main QUANTITY code bits here:
-------------------------------------------------------------------
<!--bof Add to Cart Box -->
<?php
if (CUSTOMERS_APPROVAL == 3 and TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '') {
// do nothing
} else {
?>
<?php
$display_button = zen_get_buy_now_button($_GET['products_id'], '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT));
?>
<?php if ($display_qty != '' or $display_button != '') { ?>
<div id="cartAdd">
<?php
//echo $display_qty;
echo $display_button;
?>
</div>
<?php } // display qty and button ?>
<?php } // CUSTOMERS_APPROVAL == 3 ?>
<!--eof Add to Cart Box-->
-------------------------------------------------------------------
I have tried setting the <input type="hidden" to "text" and in this case the quantity field actually shows but to no help - it doesn't do anything when I enter any values - product quantity always stays at 1.
CAN ANY OF THE WIZARDS ON THIS FORUM HELP ME FIX THIS?



