When user is logged in (coppermine gallery), there´s a link for "My profile", which directs to phpBB edit profile part (?mode=editprofile). But the question is how to make another link to a phpBB user viewprofile? (?mode=viewprofile&u=... )
???
depends on where you want it to appear. Post details.
It would be best if it appears on main page, just below the topmenu links. It´s in theme.php. ::)
Quote from: matu111 on April 22, 2005, 09:16:21 AM
It would be best if it appears on main page, just below the topmenu links. It´s in theme.php. ::)
or it´s in the topmenu
GauGau ? Can you help me ? :-[
details needed! Post a screenshot with the place you want it to appear highlighted some way.
attached
edit themes/yourtheme/theme.php, find<!-- BEGIN my_gallery -->
<td><img name="spacer" src="images/spacer.gif" width="5" height="25" border="0" id="spacer" alt="" /></td>
<td><img name="buttonleftmy" src="themes/hardwired/images/buttonleftmy.gif" width="17" height="25" border="0" id="buttonleftmy" alt="" /></td>
<td background="themes/hardwired/images/buttoncenter.gif">
<a href="{MY_GAL_TGT}" title="{MY_GAL_TITLE}">{MY_GAL_LNK}</a>
</td>
<td><img name="buttonright" src="themes/hardwired/images/buttonright.gif" width="7" height="25" border="0" id="buttonright" alt="" /></td>
<!-- END my_gallery -->
and add before it (in a new line)<!-- BEGIN custom_menu_item -->
<td><img name="spacer" src="images/spacer.gif" width="5" height="25" border="0" id="spacer" alt="" /></td>
<td><img name="buttonleftmy" src="themes/hardwired/images/buttonleftmy.gif" width="17" height="25" border="0" id="buttonleftmy" alt="" /></td>
<td background="themes/hardwired/images/buttoncenter.gif">
<a href="your/link/here.htm" title="your text that is meant to be displayed when hovering over the link">your link text</a>
</td>
<td><img name="buttonright" src="themes/hardwired/images/buttonright.gif" width="7" height="25" border="0" id="buttonright" alt="" /></td>
<!-- END custom_menu_item -->
:)
I know how to put it there, my question is how to make it linkable to viewprofile part of phpbb for each user.
this line "<a href="your/link/here.htm" title="your text that is meant to be displayed when ..."