MyBB Community Forums

Full Version: RSS shows full thread-post, how to only show a bit of it?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum RSS-feed does show the full posts, is there a way to change it so it only shows a few lines from every post?
I believe this needs a PHP edit... if you do a search you might find it, I'll try and find it for you if you can't.
In syndication.php, find:
                        'description' => $thread['message'],
Replace with:
                        'description' => substr($thread['message'], 0, 300).(strlen(($thread['message']) > 300) ? '...' : ''),