MyBB Community Forums

Full Version: How to make Lastpost title longer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello



Can someone tell me how to make Lastpost title longer
This is what I mean :
[Image: al5bnp.png]
Open /inc/functions_forumlist.php
Find the following,

if(my_strlen($lastpost_subject) > 25)
{
    $lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
} 

And replace 25 (both of them) with your desired amount of characters.