Posts Tagged ‘Magento’

Increasing demand of Magento Development

March 24, 2013

Magento is an open source e-commerce application which is quite popular these days in technology world. It is an application which was designed using Zend framework. It uses one of the hi-end technologies of modern times i.e. entity attribute value...

How to add new language in Magento store

October 3, 2012

Are you looking for adding new language in your Magento store. Follow these easy steps and enjoy your multilingual site : Go here: http://www.magentocommerce.com/translations Select the language which you want to add Download the package and upload the files on your...

Get attributes from a static block in phtml : Magento

May 17, 2012

Static block is very useful in magento to make the site functional. When we create the static block it ask for some attributes like title, identifier, statuc and content. We know How to add static block to your phtml file. Now here...

How to check the current page is homepage or not in Magento?

April 21, 2012

In the magento all the pages define by "Identifier". First we will check the current page is a CMS page or not after that we will check the current page identifier is "home" or not. We will check for "home"...

How to check server compatibility for Magento

April 3, 2012

If you are looking to run Magento site in your website. First you should confirm that you have magento compatible web server. You can check the System requirement from here. You can check the server compatibility with following steps Download the Magento Compatibility...

How to change currency symbol in Magento?

March 24, 2012

Some day before, I got a task to change the currency symbol for New Zealand. After some research, i got the solution. Now I am putting the solution here for reference: I had to change the currency symbol of New...

Service Temporarily Unavailable in Magento

February 22, 2012

Some time we face the 503 error in Magento website. Reason behind it is Magento Downloader. If you will check Magento Downloader you will get a option to unable or disable the maintenance mode. You can go to Magento Downloader directly by adding "downloader"...

How to add static block to your phtml in Magento

January 31, 2012

Static Block plays a big role in magento to show the information, links, banner etc. on the Magento sites. All the website developer use static block in a different manner. below is the process to add static block in your...

How to get manufacturers list : Magento

December 16, 2011

If you want to show the manufacturers list on your sidebar or anywhere else in magento site.  You just need add some little code. First open the file app/code/core/Mage/Catalog/Block/Navigation.php Add the below code at the end of file public function getAllManu() {...

How to get sub category list for specific category in magento

August 3, 2011

Below is the code to get sub categories list from specific category in magento. For example, if we make a category by name "brand" (fro example id is 35) and we want to show all the subcategory list as select...