The current setup I have:
1: Weight Based Shipping
2: Ensured Shipping
3. Free Shipping.
Free Shipping is offered when the orders are above 37.50. This works but it still shows the Weight Based Shipping.
For my customer this could be confusing so I want to hide the Weight Based Shipping.
I found an post with some code but no explanation on where to put it.
I think it could be \catalog\model\shipping\weight.php
before
Code: Select all
$method_data = array();
Code: Select all
if ($this->cart->getSubTotal() > $this->config->get('free_total')) {
$status = FALSE;
}
Anyone another solution?