Meromanche Posted March 31, 2010 Share Posted March 31, 2010 Hi,The default quantity is 1 per product, I would like to be able to change the default quantities at product level. Is this possible?Mero Link to comment Share on other sites More sharing options...
rocky Posted April 1, 2010 Share Posted April 1, 2010 Do you mean in the Front Office or Back Office? In the Front Office, you can change the default quantity on the product page on line 258 of product.tpl in your theme's directory: <input type="text" name="qty" id="quantity_wanted" class="text" value="{if isset($quantityBackup)}{$quantityBackup|intval}{else}1{/if}" size="2" maxlength="3" /> Change the 1 in {else}1{/if} to whatever you want the default quantity to be.In the Back Office, you can change the default quantity on the "1. Info." tab of the product editor by changing line 1302 of admin/tabs/AdminProducts.php: $qty = 1; Change 1 to whatever you want the default quantity to be. Link to comment Share on other sites More sharing options...
Meromanche Posted April 1, 2010 Author Share Posted April 1, 2010 Hi Rocky,Thank you for your reply but what I was trying to do is to make the minimum quantity editable in the front office so I can enter different default quantities per product.Mero Link to comment Share on other sites More sharing options...
rocky Posted April 1, 2010 Share Posted April 1, 2010 To specify a different default quantity for each product is not possible with Prestashop at the moment and would be difficult to do, since you'd have a add a field to the ps_product table in the database. Link to comment Share on other sites More sharing options...
Meromanche Posted April 1, 2010 Author Share Posted April 1, 2010 Rocky,Thank you! I guess that although difficult, somebody wiht coding experience in both SQL and php should be able to do it?Mero Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now