I've noticed and fixed an error when I used a free shipping discount
Code: Select all
Notice: Undefined index: image in /var/www/web274/html/viiarc/components/com_phocacart/views/checkout/tmpl/default_shipping.php on line 84
Code: Select all
if ($this->t['shippingmethod']['image'] != '') {
Code: Select all
if (isset($this->t['shippingmethod']['image']) && $this->t['shippingmethod']['image'] != '') {