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.html
Reference :
http://www.daffodilsw.com/blog/integrating-magento-header-footer-in-wordpress-solved
Reference Url :
http://stackoverflow.com/questions/4270490/how-do-i-get-a-website-switcher-instead-of-store-switcher
http://www.magentocommerce.com/boards/viewthread/8296/
http://stackoverflow.com/questions/4270490/how-do-i-get-a-website-switcher-instead-of-store-switcher
http://www.magentocommerce.com/boards/viewthread/8296/
- 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');