MyBB Community Forums

Full Version: Profile Linking?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can I link a member's profile on every user's post, under the Joined Date? example, member.php?action=profile&uid=1 .. like that, but uid is not 1, how can i make it automatic?
If you click the username in the post, you go to the profile page.
i mean, i will add a link under the Joined Date that says, Awards then he will be redirected to the poster's profile panel... pls help.
Open template 'postbit_author_user' and add this at the bottom:
<br /><a href="{$post['profilelink_plain']}">Awards</a>

Something like that?
(2011-06-03, 07:10 AM)Aries-Belgium Wrote: [ -> ]Open template 'postbit_author_user' and add this at the bottom:
<br /><a href="{$post['profilelink_plain']}">Awards</a>

Something like that?

how about if something like this? http://forum_url.testing/myawards.php?uid=8 ?? pls help
This will work on postbit templates:
{$mybb->settings['bburl']}/myawards.php?uid={$post['uid']}
(2011-06-04, 05:12 AM)Sama34 Wrote: [ -> ]This will work on postbit templates:
{$mybb->settings['bburl']}/myawards.php?uid={$post['uid']}

that doesn't work, it's just a text when i save..
(2011-06-04, 05:12 AM)Sama34 Wrote: [ -> ]This will work on postbit templates:
{$mybb->settings['bburl']}/myawards.php?uid={$post['uid']}

thanks man! that works! it helps alot!