Hi I was wondering if someone could help me set this up. I need free shipping if a customer's order = a certain number of products.
Like if a customer orders 10 or more items then the free shipping will be available.
I cant do it with a certain $ amount because the different customer groups have different prices.
O.C 1.3.2
thanks.
1. EDIT: catalog/model/shipping/free.php
2. FIND:
3. AFTER, ADD:
2. FIND:
Code: Select all
if ($this->cart->getSubTotal() < $this->config->get('free_total')) {
$status = FALSE;
}
Code: Select all
if ($this->cart->countProducts() < 5) {
$status = FALSE;
}
Who is online
Users browsing this forum: No registered users and 124 guests