coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 bridging => Topic started by: Jimbo_Test on January 08, 2006, 02:21:06 PM

Title: Link To PHPBB Profile Page?
Post by: Jimbo_Test on January 08, 2006, 02:21:06 PM
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?
Title: Re: Link To PHPBB Profile Page?
Post by: Jimbo_Test on January 27, 2006, 01:59:46 AM
*BUMP*

Please can someone help me on this - surely it can't be that difficult, but I've searched the forums thoroughly.
Title: Re: Link To PHPBB Profile Page?
Post by: Nibbler on January 27, 2006, 01:28:11 PM
Where do you want this link to be ?
Title: Re: Link To PHPBB Profile Page?
Post by: Jimbo_Test on January 27, 2006, 01:53:35 PM
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!