I'm trying to add a link to peoples profiles on PHPBB, but I can't find any info on how to do this. The format is as follows:
http://www.modelsanctum.com/board/profile.php?mode=viewprofile&u=xxx
where xxx is the profile number
How do I add this to the coppermine template?
*BUMP*
Please can someone help me on this - surely it can't be that difficult, but I've searched the forums thoroughly.
Where do you want this link to be ?
Hi Nibbler, I actually managed to figuer this out myself. For anybody who wishes to know, here's how I did it...
In theme.php find
$param = array('{MY_GAL_TGT}' => "index.php?cat=$my_gallery_id",
and directly afterwards add the following line
'{PROFILE_TGT}' => "/board/profile.php?mode=viewprofile&u=$my_user_id",
Then you need to create your link by using the following code
<a href="{PROFILE_TGT}">View My Profile</a>
Works a treat!