MyBB Community Forums

Full Version: Game Platform Login icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Looking for a plugin for steam,xbox,playstation and wii that allows users to enter there gaming information and have a little icon of it show in there post bit or profile
i don't see plugin ... but its simple you can
add it in (postbit_classic - postbit) template like this:

<if $post['fidxx'] then>
<span class="smalltext">
PSN ID: {$post['fidxx']}
</span>
</if>

and if you want to have the icon use like this code:

<if $post['fidxx'] then>
<span class="smalltext">
<img src="http://forum.hackedconsoles.com/images/hxc1/platforms/psn_ps3.png" title="PSN ID" /> PSN ID: {$post['fidxx']}
</span>
</if>

or this one:

<if $post['fidxx'] then>
<span class="smalltext">
<img src="http://forum.hackedconsoles.com/images/hxc1/platforms/psn_ps3.png" title="PSN ID" /> {$post['fidxx']}
</span>
</if>

---------------------

change xx with field id that you used in adminCP.
To add to the above, to use that, you must use template conditionals plugin for the if tags.
yes.
we can use it without that plugin with this code:
<span class="smalltext">
<img src="http://forum.hackedconsoles.com/images/hxc1/platforms/psn_ps3.png" title="PSN ID" /> {$post['fidxx']}
</span>

or

<span class="smalltext">
PSN: {$post['fidxx']}
</span>
sounds great i shall try it out thank you
your welcome Smile