我有一个产品的多个版本,我将它们组合成一个分组产品。当我交叉销售它们时,我希望所有简单产品都是可点击的(而不是默认情况下,Magento 选择其中一种简单产品)。基本上是这样的:
问问题
902 次
1 回答
0
复制到本地商店模板 /app/design/frontend/base/default/template/checkout/cart/crosssell.phtml
<?php if($this->getItemCount()): ?>
<div class="crosssell">
.........
<?php foreach ($this->getItems() as $_item): ?>
<?php if ($_item->getTypeId() == 'grouped')
{
$associatedProducts = $_item->getTypeInstance(true)->getAssociatedProducts($_item);
<?php foreach ($associatedProducts as $ap): ?>
//display associated group products here
<li class="item">
......
copy existing html structure and replace $_item with $ap
<?php echo $this->htmlEscape($ap->getName()) ?>
</li>
<?php ?>
<?php }
else
{ ?>
<li class="item">
......
// copy existing code here
</li>
<?php } ?>
<?php endforeach; ?>
.................
于 2012-10-29T15:03:56.590 回答