2024年10月28日
问题:导航菜单标签不输出外部链接。
解决办法:
打开 /include/taglib/channelartlist.lib.php 文件,找到第67行左右的:
$tpsql = " reid=0 AND ispart<>2 AND ishidden<>1 AND channeltype>0 ";
修改为:
$tpsql = " reid=0 AND ishidden<>1 AND channeltype>0
2024年10月28日
在使用 TAG 标签的列表中,分页地址栏会无限叠加参数。
解决方案:找到 core\view\Paging.php 文件,找到 buildBasicPage 方法,添加以下代码:
if (C == 'Tag') {
// @cms88 优化 TAG 分页 URL 地址叠加
$qs = false;
}
当前是 TAG 控制器时,默认不要带上 URL 参数。
2024年10月28日
找到 fckeditor\editor\dialog\fck_image\fck_image.js 文件。
修改以下代码:
GetE('txtWidth').value = 850;
GetE('txtHeight').value = 850 * oImageOriginal.height / oImageOriginal.width;
850 为默认宽度,可根据需要调整。
2024年10月28日
找到文件 e/class/functions.php,查找 function DelNewsFile。
替换函数内容:
function DelNewsFile($filename, $newspath, $classid, $newstext, $groupid = 0) {
global $class_r, $addgethtmlpath, $mob_r;
include_once ECMS_PATH . "e/dongpo/mob/config.p
2024年10月28日
调用英文日期:
使用date函数格式化日期。
示例代码:
[e:loop={0,3,0,0}]
<?= date('M', $bqr['newstime']) ?>
<span><?= date('d', $bqr['newstime']) ?></span>
<a href="<?= $bqsr['titleurl'] ?>"><?= $bqr['title'] ?></a>
[/e:lo