结帐车中相关(推荐)产品的 Magento 列表

发布于 2024-09-25 21:58:40 字数 1564 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

别忘他 2024-10-02 21:58:40

To achieve what you require simply adding "Cross Sell" product relationships will achieve this.

Read: http://www.magentocommerce.com/knowledge-base/entry/how-do-i-set-up-product-relations/

国产ˉ祖宗 2024-10-02 21:58:40

如果您查看 Mage_Catalog_Block_Product_List_Related::_prepareData 方法,您会发现它使用以下代码以及一些内务处理:

    $this->_itemCollection = $product->getRelatedProductCollection()
       ...

您可以创建自己的块来从购物车中获取产品,并且循环执行相同的代码。类似于:

$cartHelper = Mage::helper('checkout/cart');
$cart = $cartHelper->getCart();
$cartItems = $cart->getQuote()->getAllItems();
$relatedCollection = new Varien_Data_Collection();
foreach ($cartItems as $cartItem) {
  $tempColl = $cartItem->getRelatedProductCollection();
    ... insert housekeeping code from Related block
    ... add $tempColl to $relatedCollection
}

您可能需要对集合进行重复数据删除(toArray() 然后 array_unique),因为购物车中的商品可能具有相同的相关产品,但这应该可以帮助您至少在游戏中。

哈特哈,
京东

If you look in the Mage_Catalog_Block_Product_List_Related::_prepareData method, you'll see that it is using the following code plus some house-keeping:

    $this->_itemCollection = $product->getRelatedProductCollection()
       ...

You could create your own Block that grabs the products from the cart, and loops through the same code. Something like:

$cartHelper = Mage::helper('checkout/cart');
$cart = $cartHelper->getCart();
$cartItems = $cart->getQuote()->getAllItems();
$relatedCollection = new Varien_Data_Collection();
foreach ($cartItems as $cartItem) {
  $tempColl = $cartItem->getRelatedProductCollection();
    ... insert housekeeping code from Related block
    ... add $tempColl to $relatedCollection
}

you might need to deduplicate the collection (toArray() then array_unique) as it's possible that items in the cart have the same related products, but that should get you in the game at least.

HTH,
JD

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文