Entries by admin

How to edit Email Templates in Magento

To create a new Email Template you have to go to admin –> system –> transactional emails –> add new template –> choose the base template from the drop down and edit as you want. Then you can assign the newly created template to proper functionality. For e.g. if you want to assign new tempalte […]

Remove Breadcrumbs from all pages in magneto

To remove breadcrumbs from all pages in magneto. Just go to app/design/frontend/default/your theme name/layout/ Open file page.xml and you have to just comment below code around line 82 <!– <block type=”page/html_breadcrumbs” name=”breadcrumbs” as=”breadcrumbs”/> –> Then upload file and remove cache.

Top navigation as submenu in magento

If you would like to show your magento store categories like as in picture then you are on right place. Replace this code in topmenu.phtml <?php $_menu = $this->getHtml(‘level-top’) ?> <?php if($_menu): ?> <div class=”nav-container”> <ul id=”nav”> <?php echo $_menu ?> </ul> </div> <?php endif; ?> with below <?php $_menu = $this->getHtml(0,’level-top’) ?> <?php if($_menu): […]

Exclude categories in magento top navigation

Exclude categories in magento top navigation We can achive this using below code <?php $cats = Mage::getModel(‘catalog/category’)->load(2)->getChildrenCategories(); ?> <ul> <?php foreach($cats as $category): ?> <?php if (!in_array($category->getId(), array(6,7,8,9))) : ?> <li> <a href=” </li> <?php endif; ?> <?php endforeach; ?> </ul> Note : 6,7,8,9 are the categories which you want to execlude, you should replace […]

X-cart Database Backup/Restore HTTP 500 Error

X-cart Database Backup/Restore HTTP 500 Error If you are getting Database Backup/Restore HTTP 500 Error then check your error logs – /var/log If you will see following entry [06-Mar-2013 02:52:09 America/Denver] PHP Fatal error: Call to undefined function func_xpc_check_iframe_methods() in /var/www/vhosts/yoursitefoldername/httpdocs/modules/XPayments_Connector/config.php on line 57 then you can try to activate the x-payment module without configuring […]

Show more than 5 “New Products” to the home page in magento

Show more than 5 “New Products” to the home page in magento We have two methods for doing this. The first one is below Go to CMS –> Pages –> Home page in admin section and click Design section and then upadte Layout XML code with below <block type=”catalog/product_new” name=”home.catalog.product.new” alias=”product_new” template=”catalog/product/new.phtml” after=”cms_page”> <action method=”addPriceBlockType”> […]