MyBB Community Forums

Full Version: show full title on portal !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi , i want show the full title on portal or increase the number of letters hown in each title
how can i do it !!
what variable will repmace {$thread['subject']} !!!
I'm sure there is a better solution that doesn't involve editing core files, but this should do the trick.

Go to portal.php, and find

		if(my_strlen($thread['subject']) > 25)
		{
			$thread['subject'] = my_substr($thread['subject'], 0, 25) . "...";
		}

Then either remove that block of code, or replace 25 with your desired number of characters. Make sure that you use a text editor such as notepad++ instead of wordpad to make any file edits. Let me know if this works.
Ops ! it doesn't work !!!
it's a right solution but no changes !!