0

我的客户希望在 magento 的类别页面上应用单独的样式来过滤标题。

标题是从magento管理面板中设置的属性中提取的,不幸的是它没有为它们分配类,我试图将属性代码放在id中。

这是拉入过滤器的代码:

<?php if($this->canShowBlock()): ?>
<div class="block block-layered-nav">
    <div class="block-title">
        <strong><span><?php echo $this->__('Shop By') ?></span></strong>
    </div>
    <div class="block-content">
        <?php echo $this->getStateHtml() ?>
        <?php if ($this->getLayer()->getState()->getFilters()): ?>
            <div class="actions"><a href="<?php echo $this->getClearUrl() ?>"><?php echo $this->__('Clear All') ?></a></div>
        <?php endif; ?>
        <?php if($this->canShowOptions()): ?>
            <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>
            <script type="text/javascript">decorateDataList('narrow-by-list')</script>
        <?php endif; ?>
    </div>
</div>
<?php endif; ?>

我想在这一行中将 id 添加到 dt 中:

<dt><?php echo $this->__($_filter->getName()) ?></dt>

我试过这个:

<dt id="filter<?php echo $this->__($_filter->getAttributeCode()) ?>"><?php echo $this->__($_filter->getName()) ?></dt>

但它只是在代码应该存在的地方不输出任何内容。

谢谢

4

1 回答 1

0

找到了答案,以防万一有人想知道我用过:

<dt id="filter_<?php echo $_filter->getAttributeModel()->getAttributeCode() ?>"><?php echo $this->__($_filter->getName()) ?></dt>
于 2013-02-22T15:11:02.883 回答