MyBB Community Forums

Full Version: Latest Activity Thread Names
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i change the displayed Name of the Threads in the latest activity container?
I want that the displayed names are longer.
On the default theme or something else ?

The default length is 25 characters set in portal.php

		if(my_strlen($thread['subject']) > 25)
		{
			$thread['subject'] = my_substr($thread['subject'], 0, 25) . "...";
Jea 100% ty Smile
Just remember it's not good practice to make core code edits. Come upgrade time, you will have to reapply all the edits you have made.