我想删除/隐藏我的类别中的一些属性排序选项。
为此,我取消选中“使用所有属性”并选择了我想要在排序选择中显示的属性。
在此之后,我清除了缓存并重新编制了类别和产品数据索引。
但我依旧选择显示所有属性。请问有人帮我吗?
我正在使用修改后的toolbar.phtml隐藏“位置”排序选项,但我认为这与问题无关:
<div class="sort-by">
<label><?php echo $this->__('Sort By') ?></label>
<select onchange="setLocation(this.value)">
<?php foreach($this->getAvailableOrders() as $_key=>$_order): ?>
<?php if ($_order != $this->__('Position')) : // Remove "Position" from the sort option list ?>
<option value="<?php echo $this->getOrderUrl($_key, 'asc') ?>"<?php if($this->isOrderCurrent($_key)): ?> selected="selected"<?php endif; ?>>
<?php echo $this->__($_order) ?>
</option>
<?php endif; ?>
<?php endforeach; ?>
</select>
<?php if($this->getCurrentDirection() == 'desc'): ?>
<a href="<?php echo $this->getOrderUrl(null, 'asc') ?>" title="<?php echo $this->__('Set Ascending Direction') ?>"><img src="<?php echo $this->getSkinUrl('images/i_desc_arrow.gif') ?>" alt="<?php echo $this->__('Set Ascending Direction') ?>" class="v-middle" /></a>
<?php else: ?>
<a href="<?php echo $this->getOrderUrl(null, 'desc') ?>" title="<?php echo $this->__('Set Descending Direction') ?>"><img src="<?php echo $this->getSkinUrl('images/i_asc_arrow.gif') ?>" alt="<?php echo $this->__('Set Descending Direction') ?>" class="v-middle" /></a>
<?php endif; ?>
</div>
编辑:
以下是类别中显示设置的图像:
但在我的店铺视图中显示所有选项
答案 0 :(得分:10)
对我来说问题正是错误所说的,只是很难理解。您无法选择未启用的默认排序选项
答案 1 :(得分:0)
好的,解决了问题:
我更改了所有商店视图中的设置,但在所有商店视图中都没有更改。当我尝试在“languagesviews”中更改“使用默认值”设置时。我收到错误“默认产品列表排序依据可用产品列表排序依据”。
所以我“只是”需要更改每种语言的所有类别设置。
编辑:
编辑了一些类别并检查/取消选中“使用默认值”后,错误消失了,我将所有“使用默认值”设置为是。