1
デフォルトでは、利用可能な商品フィルタが左側のサイドバーに表示されます。しかし、代わりに商品リストの上にそれらを表示したいと思います。Magento:商品フィルタを移動
<p class="block-subtitle"><?php echo $this->__('Shopping Options') ?></p>
<dl id="narrow-by-list">
<?php $_filters = $this->getFilters() ?>
<?php foreach ($_filters as $_filter): ?>
<?php if($_filter->getItemsCount()): ?>
<dt><?php echo $this->__($_filter->getName()) ?></dt>
<dd><?php echo $_filter->getHtml() ?></dd>
<?php endif; ?>
<?php endforeach; ?>
</dl>
しかし、どうやらそれを:
は、私は単純に /template/catalog/product/list.phtmlに /template/catalog/layer/view.phtmlから、次のコードをコピーしてみましたそのようには機能しません。どうすればいいですか?ありがとうございます!
は、デザイナーのガイドです:http://www.magentocommerce.com/wiki/4_-_themes_and_template_customization/0 _-_ theming_in_magento/designs-for-magento –