帝国CMS后台添加信息列表标题过长会导致显示不完整的问题可以通过修改两个文件来解决。按照以下方法修改后,标题的显示字符限制将会增加,问题得到解决。
1丶找到文件并打开/e/data/html/list/listinfo.php
修改前源代码:
$r [title]= stripSlashes (sub( $r [title],0,50,false)); |
修改后代码:
$r [title]= stripSlashes (sub( $r [title],0,150,false)); |
2丶找到文件并打开/e/data/html/list/alllistinfo.php
修改前源代码:
$r [title]= stripSlashes (sub( $r [title],0,36,false)); |
修改后代码:
$r [title]= stripSlashes (sub( $r [title],0,136,false)); |
修改以上两个文件源代码数值即可,希望可以帮助到您!
上一篇:帝国cms增加栏目出现“建立目录
下一篇:帝国CMS搜索结果关键字高亮如何