MyBB Community Forums

Full Version: Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How would I go about adding a link if you're viewing your own profile page? I don't want the link to show up on other people's profiles.
Install PHP in Templates plugin: http://community.mybb.com/thread-31860.html

And then add the following code where you want it to appear in "member_profile" template;
<if $memprofile['uid'] == $mybb->user['uid'] then>
// Link goes here...
</if>
Thank you Yaldaram!