建站教程

建站教程

Products

当前位置:首页 > 建站教程 >

Wellcms用奶茶主题 CSS加载不出来

GG网络技术分享 2025-03-18 16:16 0


Wellcms可用的主题不多,也基本都没有维护更新的,尤其是免费的主题。

奶茶主题是免费的,官网都关闭了,用用还是可以的。

奈何用wellcms的伪静态时出现问题,0和1的格式都没问题,2和3格式就不行了,css加载出错,看源码发现头部的链接多了一个斜杠 /。

<link rel="shortcut icon" href="//view/template/zippos_naicha/img/favicon.ico?2.3.0" />

于是各种修改wellcms的伪静态,都不行。

最后,终于找到原因,打开奶茶的header.inc.htm发现以下代码:

<link rel="stylesheet" type="text/css" href="/<?php echo view_path();?>template/zippos_naicha/css/best.css<?php echo $static_version;?>" />

<link rel="stylesheet" type="text/css" href="/<?php echo view_path();?>template/zippos_naicha/css/head_foot.css<?php echo $static_version;?>" />

<link rel="stylesheet" type="text/css" href="/<?php echo view_path();?>template/zippos_naicha/css/media.css<?php echo $static_version;?>" />

<link rel="shortcut icon" href="/<?php echo view_path();?>template/zippos_naicha/img/favicon.ico<?php echo $static_version;?>" />

<link rel="icon" sizes="32x32" href="/<?php echo view_path();?>template/zippos_naicha/img/favicon.ico<?php echo $static_version;?>">

<link rel="Bookmark" href="/<?php echo view_path();?>template/zippos_naicha/img/favicon.ico<?php echo $static_version;?>" />

去掉 href=后面多出了的斜杠就好了。

另外,登录状态下内容页的编辑按钮链接也需要修改一下,打开thread_arc_mod.inc.htm文件,

将链接替换为以下代码即可。

<a class="btn btn-secondary _close" style="width: 60px;display: table;" href="/admin/index.php?0=content&1=update&tid=<?php echo $thread['tid']; ?>" >编辑</a>

wellcms奶茶主题内容页侧边栏链接不显示分类目录别名,比如https://www.xxxxx.com/archives/1222546,显示为https://www.xxxxx.com/read/1222546

修改/view/template/zippos_naicha/htm,read-juhe.htm中的

<div class="widget-posts-text"><a class="widget-posts-title" href="<?php echo http_url_path().url('read-'.$_downthrad['tid']);?>"

改为

<div class="widget-posts-text"><a class="widget-posts-title" href="<?php echo http_url_path().url($thread['forum_url'] . '-' . $_downthrad['tid'], '', FALSE);?>"
 

标签: 原因 头部

提交需求或反馈

Demand feedback