模板自定义备忘录
扩展图片目录 {STYLEIMGDIR}:
template/jqonline/images
1.0 首页为门户主页时,跳转至论坛主页
template/jqonline/touch/portal/index.htm
<!--{template common/header}-->
<!--{eval dheader('Location:forum.php');exit;}-->
<!--{template common/footer}-->
2.0 首页新增显示所有置顶帖子
template/jqonline/touch/forum/discuz.htm
69 行新增
<div class="swiper-container listbox cl mt10 ">
<div class="swiper-wrapper">
<div class="swiper-slide">
<ul>
<!--{block/10}-->
</ul>
</div>
</div>
</div>
2.1 首页取消精华帖子
83行 删除
<a href="javasc*pt:;" class="flex">{lang post_digest_thread}</a>
118-127行删除
<div class="swiper-slide">
<ul>
<!--{loop $g*ds['digest'] $thread}-->
<!--{if !$thread['forumstick'] && $thread['closed'] > 1 && ($thread['isgroup'] == 1 || $thread['fid'] != $_G['fid'])}-->
<!--{eval $thread['tid']=$thread['closed'];}-->
<!--{/if}-->
<li><a href="forum.php?mod=viewthread&tid=$thread['tid']"{if $thread['highlight']} $thread['highlight']{/if} title="$thread['oldsubject']"><span class="mybk">$thread['author']</span><span class="mico"></span>{$thread['oldsubject']}</a></li>
<!--{/loop}-->
</ul>
</div>
2.2 首页增加发现find四格
2-4行删除
<!--{if $_GET['mod'] == 'find'}-->
<!--{template forum/find}-->
<!--{else}-->
216行删除
<!--{/if}-->
20 行新增<!--{template forum/find}-->
template/jqonline/touch/forum/find.htm
全文替换
<div>
<div class="nui-classify-box p10">
<!--{loop $_G['setting']['mfindnavs'] $key $nav}-->
<!--{if is_array($nav) && $nav['available'] && ($nav['type'] && (!$nav['level'] || ($nav['level'] == 1 && $_G['uid']) || ($nav['level'] == 2 && $_G['adminid'] > 0) || ($nav['level'] == 3 && $_G['adminid'] == 1)) || !$nav['type'])}-->
<div class="nui-classify-item"> <a href="$nav[url]">
<div class="nui-classify-img" style=" background-image: url(/template/jqonline/images/g*ds/$key.png);"> </div>
<div class="nui-classify-name"> $nav[name] </div>
</a>
</div>
<!--{/if}-->
<!--{/loop}-->
<!--{hook/index_find_extra_mobile}-->
</div>
</div>
3.0 列表页改变“官方已回复”插件显示位置错误
template/jqonline/touch/forum/forumdisplay.htm
108 行删除 新增到 140行
<!--{hook/forumdisplay_thread_mobile $key}-->
4.0 新增发帖提示
template/jqonline/touch/forum/post.htm
93 行新增
<!--{if $_GET['action'] == 'newthread'}-->
<li class="mtext">
提示:
<!--{if $_G['forum']['modnewposts'] == 1 }-->
$_G['forum'][name]发贴 <font color="red">需等待审核</font>,禁止商业广告。
<!--{else}-->
$_G['forum'][name]发贴消费5元/条,<a href="pay" target="_blank"><strong class="xi1">点击充值</strong></a>。
<!--{if $_G['forum']['fid'] == 6 }-->
内容中不得出现“最佳”“第一”等违法词,不得以知名机构、建筑附近为位置说明。
<!--{/if}-->
<!--{if $_G['forum']['fid'] == 17 }-->
未明确招聘单位名称的信息不予推送。
<!--{/if}-->
<!--{/if}-->
</li>
<!--{/if}-->