สำหรับไฟล์ที่ต้องแก้ไข จะมีอยูสองไฟล์ใน template/default/forumคือ forumdisplay_fastpost.htm และ post_editor_extra.htm หา คำว่า 80 ถ้าไม่รู้ว่า 80 อันไหน สังเกตุง่ายๆ จะมีคำว่า "checklen" อยู่ใกล้ เปลี่ยนเป็น 250

source/function/function_post.php
if(dstrlen($subject) > 80) {
return 'post_subject_toolong';


แก้เป็น
if(dstrlen($subject) > 250) {

return 'post_subject_toolong';

static/js/forum_post.js
} else if(mb_strlen(theform.subject.value) > 80) {

showError('您的标题超过 80 个字符的限制');

แก้เป็น
} else if(mb_strlen(theform.subject.value) > 250) {
showError('ชื่อกระทู้ของคุณมีความยาวมากกว่า 250 ตัวอักษร);

source/function/function_post.php

if(dstrlen($subject) > 80) {
return 'post_subject_toolong';
แก้เป็น

if(dstrlen($subject) > 250) {
return 'post_subject_toolong';

 และไปแก้ที่ database หา pre_forum_post  หาคำว่า subject แก้ตัวเลขจาก 80 เป็น 250

Categories:
Related Posts Widget For Blogger with ThumbnailsBlogger Templates

0 comments:

Post a Comment