2014-09-24 30 views
0

我正在開發一款網站,該網站上有一種產品可以與商店中的其他產品進行交叉銷售。產品的性質意味着它將從顯示簡短描述中受益。magento在crossell中顯示簡短說明

我試過<?php echo $this->getShortDescription(); ?>沒有任何結果。

鉛我的一些研究: <?php echo $this->htmlEscape($this->getProductInfo()->getShortDescription()); ?>其返回:

Fatal error: Call to a member function getShortDescription() on a non-object in /Applications/MAMP/htdocs/coursepurchase/app/design/frontend/default/tefl/template/checkout/cart/crosssell.phtml on line 43

任何人能與此幫助呢?

謝謝

回答

0

我解決了它!

<?php echo $this->htmlEscape($_item->getShortDescription()); ?>