Hamama
Hamama

Reputation: 207

How to show count items in cart in header Open Cart?

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

Answers (1)

Erik
Erik

Reputation: 305

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

Upvotes: 1

Related Questions