How to display product short description on "product review page" [closed]
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()); ?>
精彩评论