টিএল; ডিআর : পুরো পণ্য লোড না করে কীভাবে আমি পণ্যের চিত্র / গ্যালারী লোড করব?
আমি কোনও পণ্যগুলিতে ছবিগুলি লোড করতে চাই। আমি। PhtML এ কি করি
$_popularCollection = $this->getPopularCollection();
foreach ($_popularCollection as $_product):
// the rest
$mediaGallery = $_product->getMediaGalleryImages();
endforeach;
//the rest
আমি ব্লক শ্রেণিতে যা করি:
public function getPopularCollection() {
// http://magento.stackexchange.com/q/5838/3089
// no category
if ( is_null( $this->getCategoryId() ) )
return false;
/** @var Mage_Catalog_Model_Category $category */
$category = Mage::getModel('catalog/category')->load( (int)$this->getCategoryId() );
/** @var Mage_Catalog_Model_Resource_Product_Collection $_popularCollection */
$_popularCollection = Mage::getModel('catalog/product')->getResourceCollection();
$_popularCollection->addAttributeToSelect('*');
$_popularCollection->setStoreId(Mage::app()->getStore()->getId());
$_popularCollection->addCategoryFilter($category);
return $_popularCollection;
}
এটি কাজ করে তবে আমি সবকিছু লোড করি: $_popularCollection->addAttributeToSelect(*);
আমি চেষ্টা করেছি $_popularCollection->addAttributeToSelect('media_gallery');
কিন্তু মনে হচ্ছে এটি কাজ করে না।