事件观察者不在多个商店中工作

时间:2012-03-28 06:48:30

标签: php magento

我有自己的自定义模块观察器来监听customer_login事件。我可以在主网站商店中运行观察者方法。当我移动到其他商店时,客户登录时不会触发customer_login事件。它在主商店中运行良好。我无法找到解决方案。我已关注Magento event observer not working on some machinesEvents not firing/or observer not working in magento

提前致谢。

我的配置是

   `<events>
        <customer_login>
            <observers>
               <mymodule>
                  <type>singleton</type>
                  <class>Mypackage_Mymodule_Model_Observer</class>
                  <method>runAfterLogin</method> 
               </mymodule> 
            </observers>
        </customer_login>
    </events>`

1 个答案:

答案 0 :(得分:0)

您可以按照以下链接中提到的步骤操作,它很棒:)

http://codemagento.com/2011/04/observers-and-dispatching-events/