oscpimage

About Pallavi Naukarkar

This author has not yet filled in any details.
So far Pallavi Naukarkar has created 1317 blog entries.

Magento Customization : How to Use Observer to Modify Shipping Block on One Page Checkout in Magento

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 […]

By |2026-01-13T13:43:50+00:00March 27th, 2012|Magento|

Magento Customization: How to set additional data in order email template

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:
By |2026-01-13T14:03:27+00:00March 27th, 2012|Magento, Oscp-Blog|

Magento Customization – Core Features Of Magento Cart

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 […]

By |2023-12-29T13:56:34+00:00March 23rd, 2012|Magento, Oscp-Blog|

Magento Customization – Product Types In 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 […]

By |2024-01-17T13:32:11+00:00February 27th, 2012|Magento, Oscp-Blog|

Magento Customization – Share Cart For Multi Store Magento

Magento Customization – Share Cart For Multi Store Magento

Magento Multi Store is an boom now a days into eCommerce market, these Multi stores contains various different stores which are no doubt integrated to each other […]

By |2026-01-13T14:03:51+00:00February 27th, 2012|Magento, Oscp-Blog|

Magento Customization – Magento View All Products

Magento Customization – Magento View All Products

We can customize your Magento store to setup view all Product feature in it, this feature enables you to view all the products from various categories into one single page. […]

By |2023-06-30T09:16:48+00:00February 27th, 2012|blog, Magento|

Magento customized option for products to be sold by dimension

Magento customized option for products to be sold by dimension

Magento customized option for products to be sold by dimension. e.g. Glass, Plywood sheet, Aluminum Panels etc.
Case :Want to sale 12 mm glass depending […]
By |2026-01-13T14:07:09+00:00April 29th, 2011|E commerce, Magento, Oscp-Blog|
Go to Top