RECENT BLOGS

Features of the Magento Platform
Magento E-Commerce platforms offer scalability, flexibility and functionalities for advancement of your online business. The platform contains attractive features that offer merchants total flexibility and power over the appearance, content and functionality of their online […]
Magento Customization : How to Use Observer to Modify Shipping Block on One Page Checkout in Magento
1) Define Observer in Module Configuration xml:
ModuleName/etc/config.xml
Sample code.:
<frontend>
<events>
<checkout_controller_onepage_save_shipping_method>
<observers>
<modulename_observer>
<type>singleton</type>
<class>modulename/observer</class>
<method>checkout_controller_onepage_save_shipping_method</method>
</modulename_observer>
</observers>
</checkout_controller_onepage_save_shipping_method>
</events>
</frontend>
2) Define Observer Inside Your Module:
ModuleName/Model/Observer.php
sample code.:
class NameSpace_ModuleName_Model_Observer
{
//Declare observer function
public function checkout_controller_onepage_save_shipping_method($observer)
{
//Set of code whatever […]
Magento Customization: How to set additional data in order email template
1) Place your html code in given file template file:
app/locale/template/email/sales/order_new.html
Example Code.:
Ship Date: |
---|
Magento Customization – Core Features Of Magento Cart
Each & every online merchandiser wants to make his presence in the world of e-commerce. In this era of competition, Magento cart comes just like blessings for all merchandisers who want to […]
Share Cart for Multi Store Magento
Magento Customization – Product Types In Magento
In Magento there are six product types. These are described as ‘Simple product types’ and ‘Complex product types’. They are further divided in to two groups as ‘Standalone’ and […]