<div id="cartsummary">
Now in your cart :<br />
<a href="<?php echo $this->getUrl('checkout/cart/')?>">
<?php
$count = $this->helper('checkout/cart')->getSummaryCount(); //get total items in cart
$total = $this->helper('checkout/cart')->getQuote()->getGrandTotal(); //get total price
if($count==0)
{
echo "0 item";
}
if($count==1)
{
echo $this->__(' %s items',$count);
}
if($count>1)
{
echo $this->__(' %s item',$count);
}
?>
</a>
</div>
Now in your cart :<br />
<a href="<?php echo $this->getUrl('checkout/cart/')?>">
<?php
$count = $this->helper('checkout/cart')->getSummaryCount(); //get total items in cart
$total = $this->helper('checkout/cart')->getQuote()->getGrandTotal(); //get total price
if($count==0)
{
echo "0 item";
}
if($count==1)
{
echo $this->__(' %s items',$count);
}
if($count>1)
{
echo $this->__(' %s item',$count);
}
?>
</a>
</div>
Comments
Post a Comment