MyBB Community Forums

Full Version: show the title for lastest post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anyone know how to increase title descriptions for "lastest post" in index page?i want to see more but it always "...",some posts show full text although their titles are longer.
thanks for your help
Open the file index.php and search for:
if(strlen($lastpostsubject) > 25)
{
$lastpostsubject = substr($lastpostsubject, 0, 25) . "...";
}
Change the number 25 to the number of characters you want to be shown.
Michael83 Wrote:Change the number 25 to the number of characters you want to be shown.
Make sure you change both 25's.