I have made my own image for this and this is how you do it
Code:
POSTBIT TEMPLATE EDIT
-----------
POSTBIT OR POSTBIT_LEGACY
-------
FIND
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
ADD BELOW
<if condition="$post[fieldx]">$vbphrase[gender]: <img src="$stylevar[imgdir_misc]/$post[fieldx].png" alt="$post[fieldx]" /></if>
in MEMBERS LIST TEMPLATE EDIT
Code:
In Template memberlist_resultsbit
FIND
<if condition="$show['usertitlecol']"><div class="smallfont">$userinfo[usertitle]</div></if>
AFTER ADD
<if condition="$userinfo[fieldx]"><div class="smallfont">$vbphrase[gender]<img src="$stylevar[imgdir_misc]/$userinfo[fieldx].png" alt="$userinfo[fieldx]" /></div></if>
And i added couple if there are couples on your board
and to get it work on vb 3.7.2 in mini stats then you have to find
<dd>$prepared[posts]</dd>
and below add
Code:
<if condition="$userinfo[fieldx]"><div class="smallfont"><img src="$stylevar[imgdir_misc]/$userinfo[fieldx].png" alt="$userinfo[fieldx]" /></div></if>
remember to change X for your field number mine is 6
but i hope you like my version of this