我正在开发一个网站,其中有一种产品可以与商店中的其他产品交叉销售。产品的性质意味着它将从显示简短描述中受益。
我尝试了<?php echo $this->getShortDescription(); ?>
但没有结果。
一些研究引导我:
<?php echo $this->htmlEscape($this->getProductInfo()->getShortDescription()); ?>
返回:
致命错误:在/Applications/MAMP/htdocs/coursepurchase/app/design/frontend/default/tefl/template/checkout/cart/crosssell.phtml上的非对象上调用成员函数getShortDescription() 43
任何人都可以提供帮助吗?
由于
答案 0 :(得分:0)
我已经解决了!
<?php echo $this->htmlEscape($_item->getShortDescription()); ?>