How to make an Observer in Magento ?


 Today i am going to show how to make an observers in Magento. 

In this module we are going to make _load_after event to suffix something with product name in front-end area.In same way you can make any observer.

How to make Paypal Recurring system for any site.


Hello every one today i am going to tell you how to make paypal recurring method for any site you can easily iterated this method to any website.

How to run direct MySQL Queries in Magento




While developing custom solutions for Magento, developers should always think about performance. There are many areas that we can focus on: block caching and removing unnecessary blocks from layout, disabling unused modules, database-related optimisation. Let's talk about the database-related optimisation, about direct SQL queries in particular.

How to create an attribute field for customer account in Magento


Follow these steps to create attribute :
Step 1: Create this file and save on this location app\etc\modules\Excellence_Profile.xml


<?xml version="1.0"?>
<config>
    <modules>
        <Excellence_Profile>
            <active>true</active>
            <codePool>local</codePool>
        </Excellence_Profile>
    </modules>
</config>

How to Make Custom admin theme in Magento


Follow these steps :-
 
Step 1:- Save this file in app/etc/modules/Smart_Admintheme.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Smart_Admintheme>
            <active>true</active>
            <codePool>local</codePool>
        </Smart_Admintheme>
    </modules>
</config>