Jump to content

Problems with quantity of products


Recommended Posts

Hi,

 

I am having trouble defining the minimum quantity of products, if you add to cart it adds the minimum mandatory, but I need to always add minimum mandatory, because the products are in boxes.

 

If minimum is 6, in the quantity box should not fail to place 7 or 8, but always multiples of minimum quantity

 

it is possible?

 

thanks

Link to comment
Share on other sites

the add to cart always add one by one.

You can try in product page put directy the variable of minimun amount in the check box of amount of items, this is putted on the product.tpl

 

<input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}{if $product->minimal_quantity > 1}{$product->minimal_quantity}{else}1{/if}{/if}" size="2" maxlength="3" {if $product->minimal_quantity > 1}onkeyup="checkMinimalQuantity({$product->minimal_quantity});"{/if} />

Link to comment
Share on other sites

×
×
  • Create New...