Luca S. Posted December 15, 2010 Share Posted December 15, 2010 Hello,i'm offering a FREE product (shipping excluded) in my store but i want disable the quantity purchasable from a singular client. So how to set 1 as max quantity purchasable from a customer ONLY on a specific product?Thanks Link to comment Share on other sites More sharing options...
VNguyen Posted December 15, 2010 Share Posted December 15, 2010 Hi,This is my solution. You have to edit cart.php//update the cart...if ($add OR Tools::getIsset('update') OR $delete){ //get the values $idProduct = intval(Tools::getValue('id_product', NULL)); $idProductAttribute = intval(Tools::getValue('id_product_attribute', Tools::getValue('ipa'))); $customizationId = intval(Tools::getValue('id_customization', 0)); $qty = intval(abs(Tools::getValue('qty', 1)));....................}Change it to://update the cart...if ($add OR Tools::getIsset('update') OR $delete){ //get the values $idProduct = intval(Tools::getValue('id_product', NULL)); $idProductAttribute = intval(Tools::getValue('id_product_attribute', Tools::getValue('ipa'))); $customizationId = intval(Tools::getValue('id_customization', 0)); $qty = intval(abs(Tools::getValue('qty', 1))); if($idProduct == 1234567890) $qty = 1;....................} Link to comment Share on other sites More sharing options...
Luca S. Posted December 16, 2010 Author Share Posted December 16, 2010 i have to edit only the product id right? Link to comment Share on other sites More sharing options...
VNguyen Posted December 16, 2010 Share Posted December 16, 2010 Yes, just need to edit that value only Link to comment Share on other sites More sharing options...
Luca S. Posted December 16, 2010 Author Share Posted December 16, 2010 Your fix disable the field quantity from a specific product right?Many thanks! 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