MyBB Community Forums

Full Version: post title length
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Did not change where ?

Existing thread titles won't become longer - new threads that you create now will be able to have longer titles.
Out of curiosity are you trying to edit the size of the box to be wider?
(2018-10-18, 04:05 PM)isoldehn Wrote: [ -> ]Out of curiosity are you trying to edit the size of the box to be wider?

This could be it. In which case maxlength is 85 characters.

Change in editpost, newreply, newthread templates

<input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" />
(2018-10-18, 02:36 PM)Christineg5 Wrote: [ -> ]
(2018-10-18, 02:20 PM)Ashley1 Wrote: [ -> ]subject is there, i can see it in your screenshot. You have to select it, then edit it.

i changed  it to 1200 but it did not change

please how can i increase the length of the title of my forum's posts or the thread subject length........... thanks
Ashley1 just pointed you in the direction on how to change length to the input field.

Change size=“40” to a longer length like 80 if you are trying to adjust the width.
(2018-10-18, 02:36 PM)Christineg5 Wrote: [ -> ]
(2018-10-18, 02:20 PM)Ashley1 Wrote: [ -> ]subject is there, i can see it in your screenshot. You have to select it, then edit it.

please how can i change  the subject title's length

i have got have solution here you have edit

 inc/datahandlers/post.php

find following code and replace it with your value

PHP Code:
        if($subject_length > 85)
        {
            // Subject is too long
            $this->set_error('subject_too_long', my_strlen($subject));
            return false;
        } 
Pages: 1 2