MyBB Community Forums

Full Version: URLs with Custom Profile Field in Postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is just for linking a Steam or PSN ID to the posts. I don't like the current plugins and thought I could use CPF to do this, but the forums doesn't parse the URL, but somehow the "link" has a hover effect. This is the code I'm using.

In postbit_author_used, add this to the end:

<br />Steam ID: <a url="http://steamcommunity.com/id/{$post['fidx']}">{$post['fidx']}</a>

Any help appreciated.
That should be href= not url=
<br />Steam ID: <a href="http://steamcommunity.com/id/{$post['fidx']}">{$post['fidx']}</a>
lol, true, haha. Thanks! That did the trick.