扩展包更新日志:
***20220622修改
隐藏发帖草稿箱,只对管理员可见,防止错误点击
template/default/forum/post.htm
查找229行
<button type="button" id="postsubmit" class="pn" value="true"><em>{lang save_draft}</em></button>
替换为
<!--{if in_array($_G[uid], array(1,2,3))}-->
<button type="button" id="postsubmit" class="pn" value="true"><em>{lang save_draft}</em></button>
<!--{/if}-->
上方代码
array(1,2,3)
是可以看到保存草稿按钮的用户id,如果只想管理员可以看到的话,只填1即可。
修改好后上传覆盖,后台更新缓存,修改好后只有站长可以看到保存草稿的按钮。
以下模版每次升级修改:
template/ahome_common/forum/post.htm
<!--{if in_array($_G[uid], array(1,24))}-->
<button type="button" id="postsubmit" class="pn" value="true" on【】click="$【】('postsave').【】value = 1;$【】('posts【】ubmit').cl【】ick();"><em>{lang save_draft}</em></button>
<!--{/if}-->
删除【】
***20220416修改
列表对游客不显示主题价格,对游客帖子内隐藏价格
修改文件:
template/default/forum/viewthread_pay.htm
第十行
<!--{if $_G[forum_thread][price] > 0}-->{lang pay_comment}<!--{/if}-->
改为
<!--{if $_G[forum_thread][price] > 0}-->
{if $_G['uid']}
{lang pay_comment}
{else}
本主题需向作者支付 <strong>*** {$_G[setting][extcredits][$_G[setting][creditstransextra][1]][unit]}{$_G[setting][extcredits][$_G[setting][creditstransextra][1]][title]}</strong> 才能浏览
{/if}
<!--{/if}-->
或者
<!--{if $_G[forum_thread][price] > 0}-->
{if $_G['uid']}
{lang pay_comment}
{else}
<strong>您需要注册登录才能下载</strong>
{/if}
<!--{/if}-->
以下模版每次升级修改:
template/ahome_common/forum/forumdisplay_list.htm
第187行
- [{lang price} <span class="xw1">$thread[price]</span> {$_G[setting][extcredits][$_G['setting']['creditstransextra'][1]][unit]}{$_G[setting][extcredits][$_G['setting']['creditstransextra'][1]][title]}]
改成:
{if $_G['uid']}
- [{lang price} <span class="xw1">$thread[price]</span> {$_G[setting][extcredits][$_G['setting']['creditstransextra'][1]][unit]}{$_G[setting][extcredits][$_G['setting']['creditstransextra'][1]][title]}]
{/if}
***20200710修改
增加html在线播放器。
修改文件:
template\default\common\header_common.htm
倒数第三行上面加上代码
<script src="//lib.baomitu.com/jquery/3.5.0/jquery.min.js"></script>
<script type="text/javascript" src="{$_G[setting][jspath]}common.js?{VERHASH}"></script>
<!--{if empty($_GET['diy'])}--><!--{eval $_GET['diy'] = '';}--><!--{/if}-->
<!--{if !isset($topic)}--><!--{eval $topic = array();}--><!--{/if}-->
以下模版每次升级修改:
template\小时空\common\footer.htm
最后增加代码如下
<script src="https://myhkw.cn/player/js/player.js" id="myhk" key="159431867117" m="1"></script>
</body>
</html>
***20200624修改
注意:如果想彻底防止修改邮箱,必需在服务器端也做限制,具体方法:
修改文件:source/include/spacecp/spacecp_profile.php
查找
$emailnew = dhtmlspecialchars($_GET['emailnew']);
替换为:
$emailnew = $_G['member']['email'];
以下模版每次升级修改:
模版目录template/小时空/forum/viewthread_node.htm(注释掉以下两段代码即可)去掉左侧的关注ta和发消息
<li class="addflw"><a href="home.php?mod=spacecp&ac=follow&op=add&hash={FORMHASH}&fuid=$post[authorid]" id="followmod_$post[authorid]" title="{lang follow}" class="xi2">{lang follow}</a></li>
<li class="pm2"><a href="home.php?mod=spacecp&ac=pm&op=showmsg&handlekey=showmsg_$post[authorid]&touid=$post[authorid]&pmid=0&daterange=2&pid=$post[pid]&tid=$post[tid]" title="{lang viewthread_left_sendpm}" class="xi2">{lang viewthread_left_sendpm}</a></li>
template\小时空\home\spacecp_profile.htm(替换以下代码)禁止用户修改邮箱(文件要先保存utf-8带BOM然后再转不带BOM不然中文乱码)
查找:注释
<input type="text" name="emailnew" id="emailnew" value="$space[email]" class="px" />
改成:
<input type="text" name="emailnew" id="emailnew" value="$space[email]" disabled />
具体修改如下:
<tr>
<th>邮箱已锁定</th>
<td>
<p>如需修改发送邮件到客服(
[email protected])验证本人</p>
<p>格式:申请修改绑定邮箱:昵称+原邮箱+新邮箱</p>
</td>
</tr>
<tr id="contact"{if $_GET[from] == 'contact'} style="background-color: {$_G['style']['specialbg']};"{/if}>
<th>{lang email}</th>
<td>
<!--<input type="text" name="emailnew" id="emailnew" value="$space[email]" class="px" />-->
***20200320修改
顶部图片的绝对地址:
style.css:
.header的参数background: url(bgimg.jpg) no-repeat;
改为
background: url(ht【去掉中括号内容,包括中括号,这里只是防解析图片】tps://i.loli.net/2020/03/20/ISQz5GcL1uOok9M.jpg) no-repeat;
以下模版每次升级修改:
logo的绝对地址:
header.htm
<img id="toplogo" src="template/ahome_common/src/default/logo.png">
改为
<img id="toplogo" src="https://ae01.alicdn.com/kf/H96c7a62a864340cab8a07385aa86066ds.jpg">
2022.4.36修改
<img id="toplogo" src="https://skillstore.cdn.bcebos.com/icon/0/f3e15685-a0dc-2786-279e-594fb51324b1.gif">
***20200318修改
style.css:删除style.css的#topologo{display:none;}显示logo
以下模版每次升级修改:
logo显示参数
extend_common.css:
#toplogo {
margin-top: 0px;
margin-bottom: 8px;
height: 100px;
}
2022.4.36修改
#toplogo {
margin-top: 0px;
margin-bottom: 0px;
height: 130px;
}
版块内不显示发帖人头像:
补丁:forumdisplay_list.htm覆盖