I need to show count of items in cart in Header.
I tried to edit header.php
file as:
$products = $this->cart->getProducts();
$data['total'] = count($products);
And after to display this in template header.tpl
:
<?php echo $total?>
I need to show count of items in cart in Header.
I tried to edit header.php
file as:
$products = $this->cart->getProducts();
$data['total'] = count($products);
And after to display this in template header.tpl
:
<?php echo $total?>