gpt4 book ai didi

magento - 检查产品是否在愿望 list 中

转载 作者:行者123 更新时间:2023-12-02 13:39:44 25 4
gpt4 key购买 nike

我正在开发 Magento 主题,我需要构建一个函数来检查产品是否已添加到用户的愿望 list 中。

Magento 有一个“Mage_Wishlist_Helper_Data”帮助程序类,但我不知道如何构建一个检查是否已在愿望 list 中的函数。基本上我需要使用 Magento 的愿望 list 功能来构建收藏夹列表。如果特定产品已添加到用户的收藏夹中,我想向“添加到愿望 list ”链接添加一个特殊类。

最佳答案

 <?php $wishlist = Mage::getModel('wishlist/item')->load($_product->getId(),'product_id');
if($wishlist->getId())
//product is added
echo "Added! - Product is in the wishlist!";
else
//add product to wishlist
echo "<a href='".$this->helper('wishlist')->getAddUrl($_product) ."'>Add This?</a>";
;?>

关于magento - 检查产品是否在愿望 list 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6740696/

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