私はmagento1.7を複数の店舗で運営しており、さまざまなブランド/メーカーのさまざまな店舗に表示する必要があります
現時点では、このコードを使用しています。
<?php
$product = Mage::getModel('catalog/product');
$attributes = Mage::getResourceModel('eav/entity_attribute_collection')
->setEntityTypeFilter($product->getResource()->getTypeId())
->addFieldToFilter('attribute_code', 'manufacturer');
$attribute = $attributes->getFirstItem()->setEntity($product->getResource());
$manufacturers = $attribute->getSource()->getAllOptions(false);
?>
<?php foreach ($manufacturers as $manufacturer): ?>
<a href="/manufacturer/<?php echo $manufacturer['label'] ?>"> <?php echo $manufacturer['label'] ?> </a>
<?php endforeach; ?>
フロントエンドにメーカーを表示しますが、すべてのサイトで同じブランドを表示しています。
異なるサイトで異なるブランドを表示するようにmagentoに指示するにはどうすればよいですか?
どうもありがとうございます!