hello
i want show the total number Products (carts Product) in the add to cart popup
also i used this cod in the padded.php
$cart = VirtueMartCart::getCart(); //getting cart object
$dat = $cart->cartProductsData;
echo "Total Product Count: " . count($dat)."\n";
$cart->prepareCartData();
but it does not show the the correct number
how can i fix this please ?
That shows the count of unique products. Try this instead:
$this->cart->prepareCartData();
echo $this->cart->totalProduct;
yes , thanks , this works greet