MyBB Community Forums

Full Version: Steam Custom Profile Field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys!
I looked around the 'Mods' section in the site to see if I can find a Steam Profile ID mod for the profile field that will appear under the number of posts, date of joining and all of those in the profile inside a topic, but I haven't found one (something like this FB mod, only for steam: LINK).

Can someone please tell me where can I find one, or how can I do it myself?

Any kind of help will be very appreciated Smile.

Netanel.


Thank you for the help, but this mod shows the steam id on the top side of the post, I only want a steam small icon under all the information as number of posts.
You'll need to manually add it to your post_bit then.
Doesn't sound too hard.
But how can I create a Custom Profile Field that would contain links to another site?
I can only enter a name, description, and so on.

I used that code to create the same thing in an old SMF forum I had:
<a href="http://steamcommunity.com/id/{INPUT}"><img src="IMG SOURCE" alt="{INPUT}" /></a>

But I can't find a place to enter this code to in creating custom profile fields in MyBB.
Add the following to your postbit_author_user template:
<a href="http://steamcommunity.com/id/{$post['fidX']}"><img src="IMG SOURCE" alt="{$post['fidX']}" /></a>

Replace X with the actual custom profile field ID.
Great! Thanks.