Skip to main content

Posts

Showing posts from June 19, 2014

Add Rating Star in product in magento

Step :1   Go to app/design/frontend/base/default/template/catalog/product/view.phtml   In the  view .phtml  file find the following code  <?php //echo $this->getReviewsSummaryHtml($_product, false, true)?> Replace with this code:  <?php echo $this->getReviewsSummaryHtml( $_product, 'short' )?>

ADD “HOME” LINK IN MAGENTO TOP NAVIGATION MENU

design/frontend/default/yourtheme/template/page/html/topmenu.phtml /*design/frontend/default/yourtheme/template/catalog/navigation/top.phtml*/ replace following code to:- <?php $_menu = $this ->getHtml( 'level-top' ) ?> <?php if ( $_menu ): ?> <div class = "nav-container" >      <ul id= "nav" >           <!-- HOME BUTTON HACK -->          <?php $_anyActive = false; foreach ( $this ->getStoreCategories() as $_category ) { $_anyActive = $_anyActive || $this ->isCategoryActive( $_category ); } ?>          <li class = "<?php echo !$_anyActive ? 'active' : '' ?>" ><a href= "<?php echo $this->getUrl('')?>" ><?php echo $this ->__( 'Home' ) ?></a></li>          <!-- HOME BUTTON HACK -->          <?php echo $_menu ?>      </ul> </div> <?php endif ?>