Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 magento 1.4 。任何人请告诉我如何发送产品价格提醒。我是否需要为此更改任何代码。如果我需要更改代码,可以告诉我具体在哪里更改以及更改什么?
价格警报Mage_ProductAlert_Model_Observer::process()由 cron 定期调用。您想要对警报的发送方式进行的任何更改都将在其中。
Mage_ProductAlert_Model_Observer::process()
如果您想创建稍后发送的警报,请参阅Mage_ProductAlert_AddController::priceAction()。它只是创建一个Mage_ProductAlert_Model_Price对象并将其与客户一起保存。
Mage_ProductAlert_AddController::priceAction()
Mage_ProductAlert_Model_Price