inherit
0436fd8e@opayq.com
195568
0
Jun 24, 2013 13:00:59 GMT -8
angelo
2
June 2013
angelo
|
Post by angelo on Jun 16, 2013 18:09:22 GMT -8
Hey volks,
I got an issue and I don't know how to resolve it, because I can't handly myself with css.
In your forum templates there already is a dependency with a little picture for male and female, i think i can use it for my interest.
This is the code
{if $[user.gender]}<span class="float-right">$[user.gender.image]</span>{/if} {foreach $[user.mini_custom_field]} <br /><span class="$[user.mini_custom_field.content_class]">$[user.mini_custom_field.name]: $[user.mini_custom_field.value]</span> {/foreach} How do I have to change it to put a Sir or Madam in front of each username?
$[user] thank you very much! angelo
|
|
inherit
\o/ ^o^ /o_ /o\
16464
0
Jul 22, 2024 13:57:10 GMT -8
pawl
29,621
November 2003
pollo
Pink Stars
|
Post by pawl on Jun 18, 2013 14:25:22 GMT -8
Try this before the $[user]
{if $[user.gender.text] == "Female"}Madam {elseif $[user.gender.text] == "Male"}Sir {/if}
Should work for you. =]
|
|