gpt4 book ai didi

magento - 产品列表事件的价格?

转载 作者:行者123 更新时间:2023-12-02 15:21:57 26 4
gpt4 key购买 nike

我正在尝试了解如何配置观察者来检查 magento 在类别/搜索结果下列出产品时何时调用价格,但目前我找不到任何线索。

有人以前有过这种需求,可以给我一些指导吗?

我使用的是 Magento 1.6.0.0。

最佳答案

实现此目的的一种方法是观察目录产品的 collection_load_after 事件:

        <catalog_product_collection_load_after>
<observers>
<Your_Module_Observer>
<type>model</type>
<class>your_module/Observer/class>
<method>modifyPrices</method>
</Your_Module_Observer>
</observers>
</catalog_product_collection_load_after>

然后,您可以循环浏览该集合并获取每种产品的价格,并根据需要进行更改:

$products = $observer->getCollection();

foreach( $products as $product )
{
$product->setPrice( $myCustomPrice );
}

不确定这是否正是您正在寻找的内容,但希望它能为您指明正确的方向。

关于magento - 产品列表事件的价格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7674556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com