Hi Stefan,
That's not actually what I meant:
Using the HTML module, pick a user that has set their "Unit" field to nothing, or "":
<p>This is the User's Unit-[Profile:Unit|<br />{0}|]-More content</p>
and it outputs:
This is the User's Unit-[Profile:Unit|{0}|]-More content
(ie. it did not work)
and then try:
<p>This is the User's Unit-[Profile:Unit|<br />{0}| ]-More content</p>
(so instead of "" for the IfEmptyReplace value, we use " "
and it outputs:
This is the User's Unit- -More content
(as you would expect - note the space between the - - ). Sso bascially, I want to output nothing if the field is empty. I don't want to have to put " " as this obviously puts a space in. I just want nothing to be outputted if they user has not filled in that field.