I need to display number of item and total amount in block to put anywhere.
For example:
Your cart:item(number)amount $(number)
I ve tried 3 similar snippets:
<?php
$subtotal = 0;
foreach (uc_cart_get_contents() as $item) {
$subtotal += $item->price * $item->qty;
}
?>and
<?php
$number_of_items = count(uc_cart_get_contents());
?>and
<?php
$items = 0;
foreach (uc_cart_get_contents() as $item) {
$items += $item->qty;
}
?>but block shows nothing.PHP input enabled.
Any tips on this?

