MyBB Hacks

Full Version: Profile Fields if exist or not
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

I wish to show a information on post bit.I use this to show.And I create 2 custom fields to

Code:
 <td align="center"><a href="http://bf3stats.com/{$post['fid7']}/{$post['fid6']}"><img src="http://g.bf3stats.com/{$post['fid7']}/pDX91iDK/{$post['fid6']}.png" alt="BF3 Stats" /></a></td>


[Image: th_Seleccedilatildeo_013_zpsf74ae723.png]


{$post['fid7']} = plataform
{$post['fid6']} = nick in game

But some users don't have nickname (because dont have the game)or not filled profile.. When the user does not have displayed an "image not reached."

How to replace this by a standard image,text or any other..? Or create a default value for that fields?



thx

Maybe something like this:

Code:
<if $post['fid7'] && $post['fid6'] then>
....
<else>
....
</if>

Reference URL's