2011-09-19 160 views
2

我有一個佈局,需要評論頁面上的產品描述。我怎樣才能做到這一點?如何在產品評論頁面顯示產品長描述?

Magento的版本是1.6

彷彿評論頁面加載產品視圖模板只是沒有一些信息看來, from 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> 

並在主要產品視圖中顯示詳細信息,但在審查視圖中沒有。

回答

4

Magento的哪個版本?產品集合是如何加載的?

您需要自定義其中一個模板位置,確保移動到您的模板中並且不要編輯基礎文件。

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

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

這是如何裝入一個標準的產品視圖。

您可能必須通過<?php $_product = $this->getProduct(); ?><?php $_helper = $this->helper('catalog/output'); ?>

+0

設置$ _產品變量'code'

\t getProduct(); ?> \t productAttribute($_product, $_product->getDescription(), 'description') ?>
'code' 結束了工作的感謝! – Aaron

相關問題