【发布时间】:2014-09-18 16:48:19
【问题描述】:
感谢阅读,我正在尝试在 magento 的时事通讯中添加新字段。 进行了搜索,发现了这个answer,我认为这是最正确的。 但是当我添加我的观察者时,magento 没有保存新电子邮件,有时还没有保存消息
订阅有问题
出现。 这是代码: config.xml(如果我的模块在本地是 My_test):
<newsletter_subscriber_save_before>
<observers>
<class>test/newsletter_observer</class>
<method>add</method>
</observers>
</newsletter_subscriber_save_before>
在文件 app/code/local/My/Test/Model/Newsletter/Observer.php 中:
class My_Test_Model_Newsletter_Observer{
public function add($observer){
// no thing here for now ..
}
}
谁能帮忙?? 提前谢谢。
【问题讨论】: