无法在magento前端显示产品图像


Unable to display product images in magento frontend

我编写了一个小模块来过滤定制产品并在前端显示。我在显示产品取得成功,但magento无法加载我们的产品图像。但是当我刷新页面时,我成功地得到了一些图像。以下是URL供您参考:https://bombaytrooper.com/magic-search?design=+Hungry+Gym+Gaming&gender=63

下面是获取产品属性的代码
        $collection = Mage::getModel('catalog/product')->getCollection();
        $collection->addAttributeToSelect('image');
        $collection->addAttributeToSelect('small_image');
        $collection->addAttributeToSelect('thumbnail');
        $collection->addAttributeToSelect('product_url');
        $collection->addAttributeToSelect('id');
        $collection->addAttributeToSelect('name');
        $collection->addAttributeToSelect('priceHtml');
        $collection->addAttributeToSelect('short_description');
        $collection->addAttributeToSelect('review_summary_Html');
        $collection->addAttributeToSelect('add_to_cart_url');
        $collection->addAttributeToSelect('add_url');

是我的脚本有问题还是magento的缓存有问题?有没有办法得到所有的产品图片?

提前谢谢你

在链接的URL上加载图像对我来说很好。也许你需要清空浏览器缓存