Log in

View Full Version : Help with simple postbit modification needed


tobias_t
11-14-2008, 09:52 AM
Hi all,

I want to change the postbit so that, when you click on the username, it takes you directly to its public profile page instead of giving you the little float window with the user options.

I am on 3.6.5 and AFAIK the relevant code section to edit should be this:

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

How would I need to change it?

Thanks, Tobias

punchbowl
11-14-2008, 10:55 AM
how's this:

<div id="postmenu_$post[postid]">
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
$post[onlinestatus]
</div>

tobias_t
11-14-2008, 12:59 PM
Excellent, thank you!