
11-05-2004, 07:59 AM
|
 |
|
|
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
*Untested*
- Set this field to not show up on memberlist
- Edit template MEMBERLIST, add a column for the image
- Edit template memberlist_resultsbit as well and place the following code there where you want to have the image:
HTML Code:
<if condition="$userinfo['fieldx'] == 'AA'">
<img src="aa.jpg" alt="Image for AA" />
<else />
<if condition="$userinfo['fieldx'] == 'CZ'">
<img src="aa.jpg" alt="Image for CZ" />
<else />
<img src="both.jpg" alt="Image for Both" />
</if>
</if>
|