Skip to main content

Posts

Showing posts from October, 2013

Need Mini Shopping Cart in Header

<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>