getName()
会返回null
在产品页面中 我正在谈论的代码位于
设计/前端/ RWD /默认/模板/ cataloginventory / stockqty / compsite.phtml
<?php foreach ($this->getChildProducts() as $childProduct) : ?>
<?php $childProductStockQty = $this->getProductStockQty($childProduct); ?>
<?php if ($childProductStockQty > 0) : ?>
<tr>
<td><?php echo $childProduct->getName() ?></td>
<td class="a-center"><?php echo $childProductStockQty ?></td>
</tr>
<?php endif ?>
<?php endforeach ?>
它只显示数量但不显示产品名称。所有这些产品都是一个可配置的相关产品......
the image where should appear the product name, on the product page