PDA

View Full Version : Need help for a simple template modification


tobias_t
01-23-2008, 11:59 AM
Hi there,

I want to have an icon in the userbar that links to the personal homepage that a user has entered in his account. So far, so simple.

I have come up with the code below for postbit, but it turns out that the resulting icon simply links to the very same forum page it is on, instead of to the users homepage.

Anybody who can help me with this?

Thanks, Tobias



<if condition="$show['homepage']">
<a href ="$userinfo[homepage]"target="_blank"><img src="images/misc/homepage.gif" border="0" alt="View Member's Homepage"></a>
</if>

Opserty
01-23-2008, 03:52 PM
In a post it would be something like:

<if condition="$post['homepage']">
<a href="$post[homepage]" target="_blank"><img src="images/misc/homepage.gif" border="0" alt="View Member's Homepage" /></a>
</if>

tobias_t
01-23-2008, 04:03 PM
Fantastic, thank you very much!