【问题标题】:How do I display the product Long Description in the product review page?如何在产品评论页面显示产品详细描述?
【发布时间】:2025-07-15 23:15:01
【问题描述】:

我的布局需要评论页面上的产品描述。我怎样才能做到这一点?

Magento 版本是 1.6

评论页面似乎正在加载产品视图模板,只是没有一些信息;来自product/view.phtml:

<div id="product-details">
    <?php foreach ($this->getChildGroup('detailed_info', 'getChildHtml') as $alias => $html):?>
            <div class="box-collateral <?php echo "box-{$alias}"?>">
                <?php echo $html; ?>
            </div>
    <?php endforeach;?>
</div>

在主产品视图中,它会在此处显示详细信息,但在评论视图中却没有。

【问题讨论】:

    标签: php magento


    【解决方案1】:

    什么版本的 Magento?产品集合是如何加载的?

    您将需要自定义下面的模板位置之一,确保移入您的模板并且不要编辑基本文件。

    /var/www/vhosts/site.com/www/app/design/frontend/base/default/template/review/

    <?php echo $_helper->productAttribute($_product, $_product->getDescription(), 'description') ?> 
    

    这是在标准产品视图上加载的方式。

    您可能需要通过&lt;?php $_product = $this-&gt;getProduct(); ?&gt;&lt;?php $_helper = $this-&gt;helper('catalog/output'); ?&gt; 设置$_product 变量

    【讨论】:

    • code
      getProduct(); ?> productAttribute($_product, $_product->getDescription(), 'description') ?>
      code 终于工作了,谢谢!