Minimum Order can be adjusted in Cart
15 years 4 months ago - 15 years 4 months ago #15620
by didero
Minimum Order can be adjusted in Cart was created by didero
I have a category of products where the minimum order number of each item is 5.
But in the Minicart as well as the Checkout page the number of items can be set under that minimum. Am I missing something or doing something wrong?
Example is here:
www.broodjes2day.nl/index.php/online-bes...iment-bestellen.html
But in the Minicart as well as the Checkout page the number of items can be set under that minimum. Am I missing something or doing something wrong?
Example is here:
www.broodjes2day.nl/index.php/online-bes...iment-bestellen.html
Last edit: 15 years 4 months ago by didero.
Please Log in or Create an account to join the conversation.
15 years 4 months ago #15629
by nicolas
Replied by nicolas on topic Re: Minimum Order can be adjusted in Cart
Could you try to add the line:
if($product->product_min_per_order>0 && $product->product_min_per_order>$quantity) $quantity = $product->product_min_per_order;
before the line:
if($product->product_max_per_order>0 && $product->product_max_per_order<$quantity) $quantity = $product->product_max_per_order;
in the file administrator/components/com_hikashop/classes/cart.php and try again ?
if($product->product_min_per_order>0 && $product->product_min_per_order>$quantity) $quantity = $product->product_min_per_order;
before the line:
if($product->product_max_per_order>0 && $product->product_max_per_order<$quantity) $quantity = $product->product_max_per_order;
in the file administrator/components/com_hikashop/classes/cart.php and try again ?
Please Log in or Create an account to join the conversation.
15 years 4 months ago #15632
by didero
Replied by didero on topic Re: Minimum Order can be adjusted in Cart
Thank you so much. That works!
Please Log in or Create an account to join the conversation.
Time to create page: 0.205 seconds