Reputation: 207
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?>
Upvotes: 2
Views: 2381
Reputation: 305
Your code should work, but you can also use command $this->cart->countProducts()
Upvotes: 1