0

Add new language to magento

posted on , by Muthupandi

Reference : http://inchoo.net/magento/adding-a-new-language-in-magento/ Norwegian Nynorsk Language Pack : http://www.magentocommerce.com/magento-connect/magento-community-modules-norwegian-nynorsk-norway-language-pack.html Norwegian Bokmal Language Pack : http://www.magentocommerce.com/magento-connect/magento-community-modules-norwegian-bokmal-norway-language-pack.ht ...

0

Integrating Magento Header/Footer in Wordpress

posted on , by Muthupandi

Reference : http://www.daffodilsw.com/blog/integrating-magento-header-footer-in-wordpress-solv ...

0

How do add website switcher instead of store switcher(dorpdown) in magento ?

posted on , by Muthupandi

Reference Url : http://stackoverflow.com/questions/4270490/how-do-i-get-a-website-switcher-instead-of-store-switcher http://www.magentocommerce.com/boards/viewthread/829 ...

0

Create cusom log file in magento

posted on , by Muthupandi

Magento provide support to create own magento log files.It have the function for this purpose in app/code/Mage.php public static function log($message, $level = null, $file = '') {} We just need to call the above function when we need to create log file or storing information in custom log files. For example: Mage::log('My log entry', null, 'mylogfile.log'); ...

0

How do get current store details in magento ?

posted on , by Muthupandi

Get store data Mage::app()->getStore(); Store Id Mage::app()->getStore()->getStoreId(); Store code Mage::app()->getStore()->getCode(); Website Id Mage::app()->getStore()->getWebsiteId(); Store Name Mage::app()->getStore()->getName(); Is Active Mage::app()->getStore()->getIsActive(); Homepage URL of Store Mage::app()->getStore()->getHomeUrl(); Current page URL of Store Mage::app()->getStore()->getCurrentUrl(); All of these functions can be found in ...

0

Get products Details using Order Id in Magento ?

posted on , by Muthupandi

Reference: http://www.w3bdeveloper.com/how-to/magento-get-products-from-order-by-order-id-as-arra ...

0

How do remove navigation links from My Account Dashboard in Magento ?

posted on , by Muthupandi

Reference : http://ecommerce.eglobeits.com/blog/remove-magento-navigation-links-from-my-account-dashboar ...

0

Magento Custom Shipping Method

posted on , by Muthupandi

Coming soon... ...

0

How do add custom renderer for a custom column in Magento grid ? || Adding thumbnail image to magento admin grid column

posted on , by Muthupandi

To add additional column to your grid and add custom renderer, you need to open your grid block from required module. Let me explain with custom module to add additional column. My custom module Structure Custom -Sample --Block ---Adminhtml ----Sample -----Grid.php We need to work on the Grid.php file.This file contains different type of functions to display content in the grid.We need to search _prepareColumns() functions and work on that.. I already contain some columns to display informations.First ...

0

How do add additional column in admin grid ?

posted on , by Muthupandi

To add additional column to your grid, you need to open your grid block from required module. Let me explain with custom module to add additional column. My custom module Structure Custom -Sample --Block ---Adminhtml ----Sample -----Grid.php We need to work on the Grid.php file.This file contains different type of functions to display content in the grid.We need to search _prepareColumns() functions and work on that.. I already contain some columns to display informations.First I will ...

0

Magento Template path Hints for Admin and Frontend Area

posted on , by Muthupandi

When developing or customizing existing themes,you need to know template path hints for frontend and admin area. Magento provide default option to see the template for the frontend (enable it via System > Configuration > Developer > Debug > Template Path Hints ) Unfortunately Magento doesn't provide same trick to the admin area. Here you can see the trick to find admin temaple area with simple custom module Download and install module from the below links Download Link After ...

0

How do resize the category images in Magento ?

posted on , by Muthupandi

This topic explains about getting category images in the frontend ( category list page ) and resize the image to the given size. Call the below function from your template <img src="<?php echo Mage::getModel('catalog/category')->getCategoryImage($_category,300,300); ?>" alt="category_name"> Override category model(category.php) in the below directory app/code/local/Mage/Catalog/Model/ Add the below function in category.ph ...

0

How to override core model in magento ?

posted on , by Muthupandi

For example : We need to override category.php model file of the catalog module Catalog module is placed in the core/Mage directory. Now here override the model file of the category.php Create the following directory and files in local direcoty app/code/local/Mage app/code/local/Mage/Catalog app/code/local/Mage/Catalog/Model app/code/local/Mage/Catalog/Model/category.php Now Open category.php file from this path ( core/Mage/Catalog/Model/ ) Copy the content of this file paste copied ...

0

How do change order of shopping cart totals in Magento ?

posted on , by Muthupandi

Reference : http://stackoverflow.com/questions/14577006/changing-order-of-shopping-cart-totals-in-magento This site templates : http://www.freshdesignweb.com/free-responsive-blogger-templates.ht ...