Get Controller, Module, Action & Router Name In Magento

In Magento sometimes we can not get the actual name of the Controller, Module, Action & Router, Magento has many numbers of the Controller, Module, Action & Router, so it is very difficult to find the actual name of the Controller, Module, Action & Router. Here in this post

Run Magento Code Out Side Of The Magento

Sometimes we need to use Magento functions and classes outside of the Magento platform. Suppose you have a script to import the products and you want to run this one from outside of the Magento plateform then it is required to use the pre defined Magento classes and functions.

Prototype Javascript Validation In Magento Forms

Suppose you are developing a custom form in Magento and wants to use the default Magento form validation functionality, for the form validation Magento uses a file named as form.js (js/varien/form.js) which provide abstract Javascript functions for forms. To provide the form validation, form.js uses the Validation class which

addAttributeToFilter Conditions In Magento

addAttributeToFilter is a predefined function of the Magento that can be called on a product collection of the Magento. We can say, it adds a condition to the WHERE part of the MySQL query of the Magento, used to extract product collection from the database.

Display Countries Drop Down In Magento

If you are working with the custom Magento development,sometimes it requires to display the Countries Name in frontend or into the admin panel. In this post I am trying to describe how we can display the countries drop down in Magento?. Actually the country data are not stored into

Frontend image resize for custom extension In Magento

Suppose you have developed an extension in Magento for the testimonial and you want to display the Images on the frontend as well, You have uploaded the images from the admin panel and now you want to display the resize image on the frontend. In this post I am

Image Resize In Magento

Magento has its own strong Image resize functionality, Once you have uploaded the products images then it resizes images and save it accordingly, Magenot resizes images into the Image,Small Image and Thumbnails and display it as per the frontend requirements. But In Magento you can resize image with fixed

Get, Set and Unset Session In Magento

If you are working with the custom Magento development/Extension Development then It's very important to know regarding the session in Magento, In this post I am trying to cover Get Session, Set Session and Unset Session In Magento.