MyBB Community Forums

Full Version: [Request] Title of the Thread in the first post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i need this plugin or modification, I have seen in many forums but vBulletin although I do not think is so hard to make

Example
[Image: sdsfgh.jpg]


This automatically adds the title of the topic at large and center
You should be able to do that with a simple template edit.
but if it is this modification
bump please
bump xD
Here's how you do it.

Find in Postbit Templates > postbit:
<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>

And replace with:
<div class="post_body" id="pid_{$post['pid']}">
                    {$thread['subject']}
					{$post['message']}
				</div>

You can add a class and style it if you want.
but adds that all posts in the same subject, I just want to add in the first post
bump please
There would be no way without editing all post titles. Because The First Post isnt any different then the second post except for user info and post data. Therefore what computergeek67 posted before is the only way for this to work.