I added the below scubyfan code to the previous above code AND added the /shopcart to the last href and it seems to be working now. Only now there are 2 displays showing cart totals. How can I get this to show only one - with the cart total as a hyperlink?
Thanks much for the good questions as it helped troubleshoot this.
<?php if ($_SESSION['cart']->count_contents() > 1) {
$products = $_SESSION['cart']->get_products();
echo '' . $_SESSION['cart']->count_contents().' Items - ';
echo $currencies->format($_SESSION['cart']->show_total());
}
if ($_SESSION['cart']->count_contents() == 1) {
$products = $_SESSION['cart']->get_products();
echo '' . $_SESSION['cart']->count_contents().' Item - ';
echo $currencies->format($_SESSION['cart']->show_total());
}
if ($_SESSION['cart']->count_contents() == 0) {
$products = $_SESSION['cart']->get_products();
echo 'Your Cart is Empty!';
}
?>


Reply With Quote
