Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php echo $this->htmlEscape($_item->getShortDescription()) ?>
  2.  
  3. if($_product->isGrouped()) {
  4. $_associatedProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
  5. foreach($_associatedProducts as $_associatedProduct) {
  6. if($_description = $_associatedProduct->getShortDescription()) {
  7. echo $this->helper('catalog/output')->productAttribute($_associatedProduct, $_description, 'short_description');
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement