MyBB Community Forums

Full Version: Add a link in the profile page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Using v1.6.7

Relatively new to PHP. How di I add a link to another page within my member profile pages? I want it to link to their personal image galleries so each link will be unique per user.

-Thanks in advance.
You can just modify the member_profile template via the ACP > Templates & Style > Templates > Your Template Set > Member Templates > member_profile.

You could use code like this:

<a href="gallery?uid={$memprofile['uid']}">View this user's gallery</a>
(2012-05-02, 08:52 PM)euantor Wrote: [ -> ]You can just modify the member_profile template via the ACP > Templates & Style > Templates > Your Template Set > Member Templates > member_profile.

You could use code like this:

<a href="gallery?uid={$memprofile['uid']}">View this user's gallery</a>

Thanks for the quick reply. I'll give that a try.

-Cheers

(2012-05-02, 08:52 PM)euantor Wrote: [ -> ]You can just modify the member_profile template via the ACP > Templates & Style > Templates > Your Template Set > Member Templates > member_profile.

You could use code like this:

<a href="gallery?uid={$memprofile['uid']}">View this user's gallery</a>

That worked! Thanks again!!

Love this software.