MyBB Community Forums

Full Version: Add link to custom profile fields?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am adding a custom profile field to the signature area of my template like so:

<img src="images/steam.png"> {$post['fid4']}

I would like the profile field to be a link like so:

http://steamcommunity.com/profile_field4


How would I add the {$post['fid4'[} into a <a href> tag?


Link to site if needed : http://zeroammo.com
you can use regular html link code in the postbit templates like below
<img src="images/steam.png"> <a href="http://steamcommunity.com/{$post['fid4']}"}>{$post['fid4']}</a>
Thanks a bunch...worked great!