升级到magento 1.9.38后,getName()返回null

时间:2018-04-17 10:20:25

标签: magento

升级到 magento 1.9.38 后,

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

0 个答案:

没有答案