2015-10-13 130 views
1

目前,我有我的簡短描述被稱爲view.phtml添加簡短說明,長說明標籤在Magento 1.9

  <?php if ($_product->getShortDescription()):?> 
      <div class="short-description"> 
       <div class="std"><?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?></div> 
      </div> 
     <?php endif;?> 

我想加入到我的長描述(目前正在通過所謂的description.phtml)。

我已經嘗試添加這段代碼到description.phtml

<?php echo $_helper->productAttribute($_product, nl2br($_product->getShortDescription()), 'short_description') ?> 

然而,當我這樣做的標籤完全消失。有沒有一種方法可能合併Magento中的短和長描述,或者只是一種將簡短描述添加到描述選項卡而不打破它的方式?

+0

請問您可否告訴我,您想在產品描述中顯示產品描述離子選項卡在產品視圖頁面中有簡短的描述。 –

回答

0

您需要添加以下代碼description.phtml

<?php $_short_description = $this->getProduct()->getShortDescription();?> 

得到short_description值。然後添加此

<?php if ($_short_description): ?> 
    <div class="std"> 
     <?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_short_description, 'short_description') ?> 
    </div> 
<?php endif; ?> 
0

複製的核心文件形式這個網址的應用程序/設計/前端/基/默認/ template/catalog/product/view/description.phtml to app/design/frontend/yourtheme/default/template/catalog/product/view/description.phtml

如果你想梳理INE短期和日誌描述togather然後嘗試下面的代碼

<?php $_description = $this->getProduct()->getDescription(); ?> 
 
<?php $_short_description = $this->getProduct()->getShortDescription(); ?> 
 
<?php if ($_description && $_short_description): ?> 
 
    <h2><?php echo $this->__('Details') ?></h2> 
 
    <div class="std"> 
 
     <?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_description, 'description')." ".$this->helper('catalog/output')->productAttribute($this->getProduct(), $_short_description, 'shortDescription') ?> 
 
    </div> 
 
<?php elseif($_description) : ?> 
 
\t <h2><?php echo $this->__('Details') ?></h2> 
 
    <div class="std"> 
 
     <?php echo $this->helper('catalog/output')->productAttribute($this->getProduct(), $_description, 'description');?> 
 
    </div> 
 
<?php endif; ?>

,如果你只是想放置短,然後從上面

希望這將幫助你

刪除長描述碼

謝謝