织梦后台子栏目移动为顶级栏目或者子栏目移动到其他子栏目之后导航高亮问题
发布时间:2021-04-30 | 发布者: | 浏览次数: 次把这个子栏目移动到顶级栏目之后currentstyle出错,高亮同时显示以前的父栏目和当前栏目了
这是官方程序的一个bug,解决方法如下
已经移动为顶级栏目的,在后台-系统-sql命令行工具,执行
update dede_arctype set topid=0 where id=21;
上面的id=21,里面的21改成你的那个顶级栏目id
如果是子栏目移动到其他栏目下,把topid=0改成你的新顶级栏目id
修复bug方法
打开 /dede/catalog_do.php 找到 ,大概在357行
$dsql->executenonequery(" update `dede_arctype` set reid='$movetype' where id='$typeid' ");
在它下面加入
if($movetype==0)
{
$dsql->executenonequery(" update `dede_arctype` set topid='$movetype' where id='$typeid' ");
}
保存,修复完成。
转载请标注:——
上一篇:没有了
下一篇:没有了
推荐文章
热门文章