目前,我有我的簡短描述被稱爲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中的短和長描述,或者只是一種將簡短描述添加到描述選項卡而不打破它的方式?
請問您可否告訴我,您想在產品描述中顯示產品描述離子選項卡在產品視圖頁面中有簡短的描述。 –