My hack-mods for a vBulletin forum
Go to admin panel Profile Fields ===> Add new Profile field ===> Single Select Menu
Title: Country
Description: Your from?
In options (download attach .txt)===>
click save, and remember id field
in postbit and postbit legacy templates
find cod===>
after add===>
Instead of X write id field
flags(attach) download to images/flags

Go to admin panel Profile Fields ===> Add new Profile field ===> Single Select Menu
Title: Country
Description: Your from?
In options (download attach .txt)===>
click save, and remember id field
in postbit and postbit legacy templates
find cod===>
Code:
<if condition="$show['reputation']"><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower] </if><div>$post[reputationdisplay]</div></if>
after add===>
Code:
<if condition="$post[fieldX] != ''"><div>
Country: <img src="images/flags/$post[fieldX].gif" title="$post[fieldX]" align="center">
</div></if>
Instead of X write id field
flags(attach) download to images/flags
