MyBB Community Forums

Full Version: Lastpost
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!
How can I change how many text to show on last post?
Where it is XXXXXXXXXXXXXXXXXXXX and at the end ...
How to change it?

Thanks!
In ./inc/functions_forumlist.php, find:

if(my_strlen($lastpost_subject) > 25)

Edit this, and make you change the below too so that it takes effect:

$lastpost_subject = my_substr($lastpost_subject, 0, 25)."...";
Thanks!
No problem =)