I would like to have free shipping on all carts that have a voucher. My idea was to edit
Code: Select all
if ($this->cart->getSubTotal() < $this->config->get('shipping_free_total')) {
$status = false;
}
Code: Select all
if (!$this->cart->hasVoucher() {
$status = false;
}
Help would really be appreciated!
Thanks & best,
Torge