开发者

How can I get gallery images in a list view?

I just want to get the "more views" area of the product view in my list view. Tried it with getMediaGalleryImages and getGalleryImagesbut it doesn't work.

<?php foreach ($_productCollection as $_product): ?>

    <!-- MORE VIEWS -->
        <p><?php echo $_product->getMediaGalleryImages() ?></p>

<?php 开发者_开发知识库endforeach; ?>

Or is there a way to just load all the product view's in the product list ? Then I don't need to design the list view and the product view. Because I have only 12 products in my shop and I present them with jQuery scrollable.

greets Max


Well, someone else helped me in another forum. This did the trick:

<?php foreach ($_productCollection as $_product): ?>

<?php $_product = Mage::getModel('catalog/product')->load($_product->getId()); ?>

    <p><?php echo $_product->getMediaGalleryImages() ?></p>

<?php endforeach; ?>
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜