MyBB Community Forums

Full Version: Two doubts - Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My problem is this.
I've added a plugin to get the profile on the left.
But what I wanted to do it is by the rank and name under the avatar.
The following image:
http://i.imgur.com/Zl4uv.png
Can I undo the plug and the other most need help.
Second doubt:
How to let the threads in a linear format without requiring the user to change the topic or in your profile?
Type: make default?
which plugin you used ? if you want the rank & user name below the avatar then it needs to be manually edited

for making linear mode as the default : follow set all users to the same thread view mode tutorial
Force Postbit layout -
Can I change, I spend a lot ^ ^
admin panel --> templates --> your theme's templates --> post bit templates --> postbit_classic
find code similar to below
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
	{$post['usertitle']}<br />
	{$post['userstars']}
	{$post['groupimage']}
	{$post['useravatar']}<br />
	{$post['user_details']}
</span>

change to below code and save the template

{$post['useravatar']}<br />
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
	{$post['usertitle']}<br />
	{$post['userstars']}
	{$post['groupimage']}
	{$post['user_details']}
</span>
Got it.
I'll try to stop now in linear.