第1步:将下面代码放到 论坛-分类信息-模板 中
<style>/* 百变百搭适配 */
@media screen and (max-width:500px){.ren_view_xxtop,.ren_lc_xx,.rtj1009_m_main .ren-flxx-us,.rtj1009_m_main .ren-view-rate,.rtj1009_m_main .ren-view-tag{display:none;}.rtj1009_m_main .ren_view_ny{padding:0 0 10px;}.ren_view_ny .message .jnpar_baseinfo img{margin-top:0;}.rtj1009_m_main .message .jnpar_baseinfo table,.rtj1009_m_main .message .jnpar_baseinfo table td{border:0;}.rtj1009_m_message{padding:5px 12px 8px;line-height:30px;margin-bottom:10px;}}</style>
提示:如果不用百变百搭主题了,可以移除上面放置的代码
第2步:打开 \template\rtj1009_app\viewthread.php
文件,找到 <!--{if !$_G['forum_thread']['special']}-->
其下一行是 $post[message]
的,将其改为:
<div class="rtj1009_m_message">$post[message]</div>
/source/plugin/ck8_view/template/insertion.htm
找到第一个 </style>
在其上一行添加:
.post_from textarea#e_view {
background: white;
padding: 5px;
}
找到 .title{ 改为 .ck8-title{
找到 class="title" 改为 class="ck8-title"
打开 /template/rtj1009_app/touch/forum/post.php
找到
在下面一行添加:
<li><a href="javascript:;"><i class="icon ren-font"></i><p>阅读权限</p></a></li>
打开 /template/rtj1009_app/touch/forum/post_editor_attribute.php
在第5行开始加入下面代码:
<!--阅读权限 start-->
<div class="tab-con-item">
<div class="list-block">
<ul>
<li class="item-content">
<div class="item-media">阅读权限</div>
<div class="item-inner">
<div class="item-input ren-input-select">
<!--<input type="text" class="px" size="60" id="tags" name="tags" placeholder="请输入链接文字" value="">-->
<select name="readperm" id="readperm" class="sort_sel">
<option value="">{lang unlimited}</option>
<!--{loop $_G['cache']['groupreadaccess'] $val}-->
<option value="$val[readaccess]" title="{lang readperm}: $val[readaccess]"{if $thread['readperm'] == $val[readaccess]} selected="selected"{/if}>$val[grouptitle]</option>
<!--{/loop}-->
<option value="255"{if $thread['readperm'] == 255} selected="selected"{/if}>{lang highest_right}</option>
</select>
</div>
</div>
</li>
</ul>
</div>
</div><!--阅读权限 end-->
打开 /template/rtj1009_app/css/extend_common.css
找到 0 13px 10px 13px 改为 0 8px 10px
打开 /template/rtj1009_app/touch/forum/post.php
找到
在下面一行添加:
<li style='width:52px;'>
<a href="javascript:;">
<i class="icon ren-font"></i><p>大附件</p>
<input type="file" id="upflis" name="upflis" value="" onchange="jq.ck8_upload();" style="opacity:0;display:block;position:relative;top: -40px;padding:0;width:100%;">
</a>
</li>
打开 /template/rtj1009_app/touch/forum/post.php
找到 在下面一行添加:
<li><a href="javascript:;"><i class="icon ren-font hl-att" style="color:green;"></i><p>附件</p></a></li>
打开 /template/rtj1009_app/touch/forum/post_editor_attribute.php
找到 <!--阅读权限 end-->
在下面新行添加:
<div class="tab-con-item huolang">
<!--{hook/post_attach_menu_duceapp}-->
</div>