如何修改Discuz x3标题字数限制
Discuz在标题上有字数限制,但有些时候标题字数确实难以完美的控制在一定范围内,所以不得不将字数扩充一定范围。现在我来给大家分享一下如何修改标题字数限制!
操作方法
- 01
首先修改数据库,经过我的经验,修改为180字符最为合适,当然,你可以参照你自己的实用需求,运行下面的sql语句: ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(180) NOT NULL; ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(180) NOT NULL; ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(180) NOT NULL;
- 02
接着修改JS验证字符数: 修改文件static/js/forum_post.js中的(可以Ctrl+F搜索字段) if(($('postsubmit').name != 'replysubmit' && !($('postsubmit').name == 'editsubmit' && !isfirstpost) && theform.subject.value == "") || !sortid && !special && trim(message) == "") { showError('抱歉,您尚未输入标题或内容'); return false; } else if(mb_strlen(theform.subject.value) > 80) { showError('您的标题超过 80 个字符的限制'); return false; } 将里边的80字符改为180字符
- 03
修改文件sitatic/js/forum.js中的(可以Ctrl+F搜索字段) if(theform.message.value == '' && theform.subject.value == '') { s = '抱歉,您尚未输入标题或内容'; theform.message.focus(); } else if(mb_strlen(theform.subject.value) > 80) { s = '您的标题超过 80 个字符的限制'; theform.subject.focus(); } 将里边的80字符改为180字符
- 04
修改模板中写死的字符限制数: 找到文件\template\default\forum\post_editor_extra.htm中的(可以Ctrl+F搜索字段) <!--{if $_G[gp_action] != 'reply'}--> <span><input type="text" name="subject" id="subject" class="px" value="$postinfo[subject]" {if $_G[gp_action] == 'newthread'}onblur="if($('tags')){relatekw('-1','-1'{if $_G['group']['allowposttag']},function(){extraCheck(4)}{/if});doane();}"{/if} style="width: 25em" tabindex="1" /></span> <!--{else}--> <span id="subjecthide" class="z">RE: $thread[subject] [<a href="javascript:;">{lang modify}</a>]</span> <span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value="" style="width: 25em" /></span> <!--{/if}--> <span id="subjectchk"{if $_G[gp_action] == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span> 将里边的80字符改为180字符
- 05
修改文件\template\default\forum\forumdisplay_fastpost.htm中的(可以Ctrl+F搜索字段) <input type="text" id="subject" name="subject" class="px" value="" tabindex="11" style="width: 25em" /> <span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span> 将里边的80字符改为180字符
- 06
修改函数验证提示: 修改文件source/function/function_post.php中的(可以Ctrl+F搜索字段) if(dstrlen($subject) > 80) { return 'post_subject_toolong'; } 将里边的80字符改为180字符
- 07
找到语言包提示文字 修改source/language/lang_messege.php中的(可以Ctrl+F搜索字段) 'post_subject_toolong' => '抱歉,您的标题超过 80 个字符修改标题长度', 将里边的80字符改为180字符