我有以下要求;
我想在类别列表页面(list.phtml)上显示已配置相关产品的产品。 我想我可以使用[b] $ _ product [/ b]变量对每个产品的每个循环之间的list.phtml进行一些调用,但我似乎无法填充relatedProductCollection 对不起,对所有这一切都很抱歉。甚至可能。
<?php foreach ($_productCollection as[b] $_product[/b]):?>
<li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?>last<?php endif; ?>" >
<div class="product-shop">
<div class="f-fix">
<?php $product->getRelatedProductCollection(); ?>
</li>
<?php endforeach; ?>
答案 0 :(得分:1)
$ product 已用于调用getRelatedProductCollection函数。
但是,
在该foreach循环中,您将其视为 $ _ product 。
你能看出差异吗?
缺少下划线。这取自您的代码。在两个地方使变量相同并尝试。