Magento call observer on checkout onepage checkout save billing


Magento call observer on checkout onepage checkout save billing as below.


Syntax of Magento call observer on checkout onepage checkout

Add the following lines of code in your config.xml with details of your module.

	<events> 
            <controller_action_postdispatch_checkout_onepage_saveBilling>
            <observers>
              <Namespace_ModuleName_Model_Observer>
              <type>singleton</type>
              <class>Namespace_ModuleName_Model_Observer</class>
              <method>Name_of_method</method>
              </Namespace_ModuleName_Model_Observer>
            </observers>
          </controller_action_postdispatch_checkout_onepage_saveBilling>
        </events>
		

Advertisements

Add Comment

📖 Read More