2

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?>
Hamama
  • 177
  • 4
  • 16
  • Your code is correct and worked for me. – DigitCart Jan 19 '17 at 08:42
  • Please refresh modification cache from admin after your changes & then check it. Please Go to admin > Extensions > Modifications and click on the blue Refresh button (top right corner) for update the system & then check it. – HDP Jan 23 '17 at 07:21

1 Answers1

1

Your code should work, but you can also use command $this->cart->countProducts()

Erik
  • 303
  • 1
  • 3
  • 12