MyBB Community Forums

Full Version: online image status under avatar profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
the question say it all

look at this


[Image: Capture.png]


i want it to be like the image above ....

i already use the classic layout by activating a mod so should i
edit the mod file?

any ideas?
@rawa2hk

Go to
ACP -> templates & styles -> templates -> your template name -> postbit templates -> postbit_classic

find {$post['onlinestatus']} cut it and paste under {$post['useravatar']}
You can add <br> after {$post['onlinestatus']} to make it look like on your image.

You can also move other parts around similar way like described above to further modify it to your likes.
ACP > Templates & Styles > Templates > Default Templates > Postbit Templates > postbit_classic

Search this:

		<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
		<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>
	</td>

And modify this:

		<td class="{$altbg}" width="15%" valign="top" style="white-space: nowrap; text-align: center;"><a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
		<strong><span class="largetext">{$post['profilelink']}</span></strong> <br />
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}
			{$post['useravatar']}<br />
                        {$post['onlinestatus']}
			{$post['user_details']}
		</span>
	</td>

The only thing you need to do is move the variable "{$post['onlinestatus']}" under the "{$post['useravatar']}<br />".

Greetings.
thank you very very very much .... yay i do it ....
thats why i love mybb, the community is awsome here.