Ben sadece bir kategoriye döngüsü ve bu ürünleri gösteren bir modül geliştirmeye çalışıyorum. Aşağıdaki kod, bununla birlikte bu kategorideki her boyutu için ürünü çeker, yapar. Birisi bana sadece configurables çekmek için bunu değiştirmenize yardımcı olabilir? Ben kullanıyorum kod gibi bir şeydir:
$my_category_id ="12";
$_productCollection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect(array('name', 'price', 'small_image', 'short_description'), 'inner')
->addCategoryFilter(Mage::getModel('catalog/category')->load($my_category_id));
ve döngü gibidir:
<?php $i=0; foreach ($_productCollection as $_product): ?>
<?php if($_product->isSaleable()): ?>
<img class="<?php echo $_product->getId() ?>" src="<?php echo $this->helper('catalog/image')->init($_product, 'small_image')->resize(150, 100); ?>" alt="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" title="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>" />
<?php else : ?>
<?php endif; ?>
<?php endforeach ?>