Uncategorized

Related product is not coming, upsell product is coming by default

1)appdesignfrontenddefaultmagikjewellerylayoutcatalog.xml Change <block type=”catalog/product_list_upsell” name=”product.info.upsell” as=”upsell_products” template=”catalog/product/list/upsell.phtml”>                     <action method=”setColumnCount”><columns>4</columns></action>                     <action method=”setItemLimit”><type>upsell</type><limit>4</limit></action>                 </block> With <block type=”catalog/product_list_related” name=”product.info.related”  template=”catalog/product/list/related.phtml”…

Find final price and tier price in magento

<?php                                               if(Mage::getSingleton(‘customer/session’)->isLoggedIn()): ?>                                                                                                                          <?php $this->setProduct(Mage::getModel(‘catalog/product’)->setStoreId(Mage::app()->getStore()->getId())->load($_product->getId()))?>                                                             INK<?php echo $this->getTierPriceHtml() ?>VK<?php echo Mage::helper(‘core’)->currency($_product->getFinalPrice());?>                                                                                          <?php else:…

Show subcategories on category page

<?php $_helpernew = Mage::helper(‘catalog/category’);  $_subcategories = $_category->getChildrenCategories();?>                 <?php if (count($_subcategories) > 0): ?>                     <ul>                         <?php foreach($_subcategories as…

1 30 31 32