Hi!
I've been reading through this thread and trying to implement something like this myself, as I've just added a minimum order requirement of £35 to get free delivery.
I have tried to use this code in my checkout/cart view and I'm not getting it to display anything on the frontend.
<?php
if($this->full_total->prices[0]->price_value_without_shipping_with_tax < 35){
$diffQty = 35 - $this->full_total->prices[0]->price_value_without_shipping_with_tax;
$app = JFactory::getApplication();
$app->enqueueMessage(JText::sprintf('MISSING_QTY_FOR_FREE_SHIPPING',$diffQty));
?>
I have ensured that my language has the override in it also, but it is still not displaying anything at the checkout
I have read through the thread a couple of times and am still not seeing that I am missing anything.
Could use a little bit of help, cheers!
This message contains confidential information