我正在尝试使用php脚本更改特定类别的顺序。下面的脚本运行正常,并且我在catalog_category_entity中看到了位置更改值,但是在管理员和前面的顺序均不受影响。
答案 0 :(得分:2)
请从管理员处拖放 与刷新索引相比,刷新索引
答案 1 :(得分:1)
您使用这样的脚本吗?
<?php
$_categories = $this->getStoreCategories();
?>
<?php foreach ($_categories as $_category) : ?>
<li class="<?php if($_category->getId() == $this->getCurrentCategoryId()) echo "active"; ?>">
<a href="<?php echo $linkcot; ?>"><?php echo $_category->getName(); ?></a>
</li>
<?php endforeach; ?>
如果不这样使用它。