juli Posted July 6, 2007 Share Posted July 6, 2007 Hi, I'm looking for a minimum quantity per product contribution, but i could not find one myself so far. I already installed QPBPP ( http://www.oscommerce.com/community/contributions,1242/ ) but there is no minimum quantity per product option. The other contribution I found is http://www.oscommerce.com/community/contributions,2982/ but it is obviously not working. Does anyone know what contribution might work for me? Or even a different solution for my problem!? Thanks in advantage, juli Link to comment Share on other sites More sharing options...
glamourfish Posted July 6, 2007 Share Posted July 6, 2007 What do you mean by minimun quantity per product? what are you trying to achieve? if at first you do succeed...try not to look surprised! Link to comment Share on other sites More sharing options...
juli Posted July 6, 2007 Author Share Posted July 6, 2007 that a customer has to buy at least (for example) 5 pieces of that product, but it has not to be in a 5 pieces bundle, where just multiples of 5 are sold, like 5, 10, 15,... I want that it just has to be more than 5.. that you can buy 5 or 12 or 7.... I hope you understand what i meant now ^^" Actually i want exactly what the "Minimum Order Quantity Per Product" contribution should do if it would work... Link to comment Share on other sites More sharing options...
satish Posted July 6, 2007 Share Posted July 6, 2007 http://www.oscommerce.com/community/contributions,2953 try this Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does. Link to comment Share on other sites More sharing options...
juli Posted July 6, 2007 Author Share Posted July 6, 2007 sounds right I'll try it :) thanks a lot.... i just wonder why it was not listed when i searched for "minimum"... maybe I'm just blind ;) Link to comment Share on other sites More sharing options...
Jack_mcs Posted July 6, 2007 Share Posted July 6, 2007 You might also want to look at the Quantity Price Breaks contribution. Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
juli Posted July 6, 2007 Author Share Posted July 6, 2007 That's what i meant by QPBPP -> "Quantity Price Break Per Product" Link to comment Share on other sites More sharing options...
Jan Zonjee Posted July 6, 2007 Share Posted July 6, 2007 That's what i meant by QPBPP -> "Quantity Price Break Per Product" From what I remember you can use QPBPP like that if you change the function adjustQty in PriceFormatter.php: function adjustQty($qty) { // Force QTY_BLOCKS granularity $qb = $this->getQtyBlocks(); if ($qty < 1) $qty = 1; if ($qb >= 1) { if ($qty < $qb) $qty = $qb; // comment out the next part to use this function for minimum product quantity only // if (($qty % $qb) != 0) // $qty += ($qb - ($qty % $qb)); } return $qty; } Link to comment Share on other sites More sharing options...
Jack_mcs Posted July 7, 2007 Share Posted July 7, 2007 That's what i meant by QPBPP -> "Quantity Price Break Per Product"There should be a box right above the price breaks boxes that sets the minimum quantity. At least, it has always been there when I have installed it. Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
mcbsolutions Posted July 16, 2007 Share Posted July 16, 2007 Just wondering, with QBPP, can you set unlimited price breaks? some of my products i have 10. Thanks! Link to comment Share on other sites More sharing options...
Jack_mcs Posted July 17, 2007 Share Posted July 17, 2007 It can be unlimited if you add the additional code. It isn't a settable option though. Jack Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. All of My Addons Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
mcbsolutions Posted November 15, 2007 Share Posted November 15, 2007 This seems to work good, I added extra price breaks, just a question, not sure how to do this. My products are printed items, and have high minimums such as 500. So first I need to make sure that the minimum of 500 is the first column displayed not the column starting with 1+ Second if the minimum is 500 on a product, I don't want the customer to be able to input anything less than that. I'm sure its not that tough, if i knew php a little better. Thanks for the help! Link to comment Share on other sites More sharing options...
geraldgrogan Posted October 12, 2008 Share Posted October 12, 2008 How would I use this module if I need to require either one of two items in every cart? http://www.oscommerce.com/community/contributions,2953 I have 2 primary items, where one them must appear in every cart before they are allowed to order one of the 5 specials. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.