discuz x3.2 標題字符從80改成160的方法
==========================================================一、database修改,標題字數(英文字1Byte,中文2Bytes)為160字符:執行sql command:
(注意改為你的表前缀)
ALTER TABLE `pre_forum_post` CHANGE `subject` `subject` VARCHAR(120) NOT NULL;
ALTER TABLE `pre_forum_rsscache` CHANGE `subject` `subject` char(120) NOT NULL;
ALTER TABLE `pre_forum_thread` CHANGE `subject` `subject` char(120) NOT NULL;
或用phpdbadmin更改也可以
==========================================================
二、修改JS驗證字符數:
1、找到 static/js/forum_post.js的74-80行
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改為160
==========================================================
2、找到 sitatic/js/forum.js的209到215行:
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改為160
==========================================================
三、修改模板中寫死的字數限制:
1、找到 template\default\forum\post_editor_extra.htm第25行開始
修改前
<!--{if $_GET != 'reply'}--
<span><input type="text" name="subject" id="subject" class="px" value="$postinfo" {if $_GET == 'newthread'}onblur="if($('tags')){relatekw('-1','-1'{if $_G['group']['allowposttag']},function(){extraCheck(4)}{/if});doane();}"{/if}#ff0000">80);" style="width: 25em" tabindex="1" /></span>
<!--{else}--><!--reply-->
<span id="subjecthide" class="z">RE: $thread [<a href="javascript:;"#ff0000">80);return false;">{lang modify}</a>]</span>
<span id="subjectbox" style="display:none"><input type="text" name="subject" id="subject" class="px" value=""#ff0000">80);" style="width: 25em" /></span>
<!--{/if}-->
<span id="subjectchk"{if $_GET == 'reply'} style="display:none"{/if}>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
<script type="text/javascript">strLenCalc($('subject'), 'checklen', 80)</script>
將紅色數字改為160
==========================================================
2.找到 template\default\forum\forumdisplay_fastpost.htm 地31行開始
修改前
<input type="text" id="subject" name="subject" class="px" value=""#ff0000">80);" tabindex="11" style="width: 25em" />
<span>{lang comment_message1} <strong id="checklen">80</strong> {lang comment_message2}</span>
將紅色數字80改為160,第二個80可改可不改
==========================================================
四,修改function驗證提示:
source/function/function_post.php的361-363行:
修改前
if(dstrlen($subject) > 80) {
return 'post_subject_toolong';
}
將數字80改為160
==========================================================
五、找到訊息提示文字的php檔,打開 source/language/lang_messege.php 找到998行改為:
'post_subject_toolong' => '抱歉,您的標題超過 160 個字符修改標題長度',
==========================================================
上面五個步驟完成記得最後最重要的一個步驟是到後台更新緩存才會生效喔
頁:
[1]