Skip to main content

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>

Comments

Popular posts from this blog

How to Call Newsletter in footer in Magento

To show Newsletter in footer go to app/design/frontend/default/YourTheme/layout/newsletter.xml and add the following lines in default < reference name = "footer" > < block type = "newsletter/subscribe" name = "footer.newsletter"   template = "newsletter/subscribe.phtml" /> </ reference > and add the following line in app/design/frontend/default/YourTheme/template/page/html/footer.phtml <?php echo $this -> getChildHtml ( 'footer.newsletter' ) ; ?>

Smooth Page Scroll Script

< script > $(function() { $('a[href*=#]:not([href=#])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')  && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html,body').animate({ scrollTop: target.offset().top }, 1000); return false; } } }); }); </ script >