MyBB Community Forums

Full Version: Styling Homepage Link in Profiles
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, this one has me stumped. That is the profile field of the devil.

I just want to be able to use the three post buttons PM, EMAIL and WWW in my profile layout, but I cannot get the "my homepage" link to accept an image in the construction.

EG

<a href="{$website}"><img src etcetc /></a>

Anyone managed to fix this?
Since you use Template Conditionals magic box:
<if $memprofile['website'] then>
<a href="<?=htmlspecialchars_uni($memprofile['website'])?>" target="_blank"><img src="..." /></a>
</if>

{$website} value is hard-coded in member.php.
Gah. I thought I might have to do that, humph.

I hope that is fixed in 1.8.

Thank you Omar.
I mistook a word in my post, I hate it when I confuse that one ¬_¬*

You are welcome Leefish.