开发者

How to display product short description on "product review page" [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical开发者_运维问答 and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 10 years ago.

I had added product detail description by adding block in review.xml but I'm not getting which block to copy from where or what code to write to display short description on product review page?


In Magento EE 1.12 product pages (view.phtml) the method above

<?php echo $this->htmlEscape($this->getProductInfo()->getShortDescription()); ?> borked...

but copying a method (already in view.phtml) and replacing the call with getShortDescription below worked

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


Try this code.

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜