Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[修改] 让分类信息发布后可以编辑

[复制链接]
magentoon 发表于 2014-1-26 14:52:50 | 显示全部楼层 |阅读模式
  一直以来大家有个印象就是DZ论坛的分类信息不能编辑,发出的帖子就算分类错了也只能那样了。特别是一些论坛把分类信息当成主题分类来用的,很需要编辑功能。但是后台是可以批量调整分类的,说明分类信息就是可以编辑的,那问题应该是前台的PHP或者模板文件上作了限制。找PHP文件并没有相关的限制语言,找模板文件发现模板上有个限制代码:如果在编辑状态或非分类信息状态下,才显示$actiontitle这个项目,也就是“发新帖”“回帖”“编辑”“分类信息”这个标题头,只要把这个限制去掉,分类信息就可以自由编辑了,写入、显示全正常。以下是X3.1的版本。
打开\template\default\forum\post.htm,把以下代码
  1.                 <!--{elseif $_GET[action] == 'edit' && $isfirstpost && !$thread['sortid']}-->
  2.                         <ul class="tb cl mbw">
  3.                                 <li{if !$sortid} class="a"{/if}><a href="javascript:;" onclick="switchpost('forum.php?mod=post&action=edit&tid=$_G[tid]&pid=$pid')">$actiontitle</a></li>
  4.                                 
复制代码
改为
  1.                 <!--{elseif $_GET[action] == 'edit' && $isfirstpost}-->
  2.                         <ul class="tb cl mbw">
  3.                                 <li{if !$sortid} class="a"{/if}><a href="javascript:;" onclick="switchpost('forum.php?mod=post&action=edit&tid=$_G[tid]&pid=$pid')">$actiontitle</a></li>
  4.                                 
复制代码
如果在发帖页面不用填写分类信息内容、不想显示分类信息的详细字段,打开\template\default\forum\post_editor_extra.htm,把以下代码
  1.         <div class="exfm cl">
  2.                 <!--{template forum/post_sortoption}-->
  3.         </div>
复制代码
改为:
  1. <div class="exfm cl" style="display:none">
  2.                 <!--{template forum/post_sortoption}-->
  3.         </div>
复制代码
如果在帖子内只想在标题上显示分类名称(跟主题分类一样),不想在帖内显示分类信息详细内容,打开\template\default\forum\viewthread_node_body.htm,把以下代码全部删掉
  1.                 <!--{if $threadsort && $threadsortshow}-->
  2.                         <!--{if $threadsortshow['typetemplate']}-->
  3.                                 $threadsortshow[typetemplate]
  4.                         <!--{elseif $threadsortshow['optionlist']}-->
  5.                                 <div class="typeoption">
  6.                                         <!--{if $threadsortshow['optionlist'] == 'expire'}-->
  7.                                                 {lang has_expired}
  8.                                         <!--{else}-->
  9.                                                 <table summary="{lang threadtype_option}" cellpadding="0" cellspacing="0" class="cgtl mbm">
  10.                                                         <caption>$_G[forum][threadsorts][types][$_G[forum_thread][sortid]]</caption>
  11.                                                         <tbody>
  12.                                                                 <!--{loop $threadsortshow['optionlist'] $option}-->
  13.                                                                         <!--{if $option['type'] != 'info'}-->
  14.                                                                                 <tr>
  15.                                                                                         <th>$option[title]:</th>
  16.                                                                                         <td><!--{if $option['value'] || ($option['type'] == 'number' && $option['value'] !== '')}-->$option[value] $option[unit]<!--{else}-->-<!--{/if}--></td>
  17.                                                                                 </tr>
  18.                                                                         <!--{/if}-->
  19.                                                                 <!--{/loop}-->
  20.                                                         </tbody>
  21.                                                 </table>
  22.                                         <!--{/if}-->
  23.                                 </div>
  24.                         <!--{/if}-->
  25.                 <!--{/if}-->
复制代码







守护你的磊 发表于 2014-1-26 15:04:12 | 显示全部楼层
虽然不懂,但好像很厉害的样子
回复

使用道具 举报

商房网 发表于 2014-1-26 16:10:06 | 显示全部楼层
其实这些都不在是个事啊,真心顶顶吧!
回复

使用道具 举报

1314学习网 发表于 2014-1-27 08:04:48 | 显示全部楼层
不错,支持下分享。。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 09:24 , Processed in 0.023648 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表