online status

Styles & Templates > Style Manager > Expand and open Postbit Templates:
On your postbit (or postbit_legacy)

If you want to remove the old status indication look for:
HTML:
<!-- / sig -->
</if>
</td>
</tr>
<tr>
	<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
		$post[onlinestatus]

Remove $post[onlinestatus]

To add the status near the nickname search for

HTML:
div id="postmenu_$post[postid]">
				<if condition="$show['profile']">
				<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><center>$post[musername]</center></a>
				<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
				<else />
				<center>$post[musername]</center>
				</if>
			</div>
Note the CENTER might not be in your style, so do a smart search, don't just copy paste...

And near $post[musername] add $post[onlinestatus] in both instances.

So the code looks like this:

HTML:
div id="postmenu_$post[postid]">
				<if condition="$show['profile']">
				<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]"><center>$post[musername] $post[onlinestatus]</center></a>
				<script type="text/javascript"> vbmenu_register("postmenu_$post[postid]", true); </script>
				<else />
				<center>$post[musername] $post[onlinestatus]</center>
				</if>
			</div>

I hope this works for you fellow! as it works for me, but i'm little rusty...
 
Really ? Strange dude :( , i'v tested here and worked fine.
Does the original icon position work?
What is your vbulletin version?
 
Back
Top