Even further investigation has found that this is the template that handles the parsing of the custom fields:
getinfo_customfields
Quote:
<tr>
<td bgcolor="$backcolor"><normalfont><b>$profilefield[title]</b></normalfont></td>
<td bgcolor="$backcolor"><normalfont>$profilefield[value] </normalfont></td>
</tr>
|
To test this, I changed that code to this:
Quote:
<tr>
<td bgcolor="$backcolor"><normalfont><b>$profilefield[title]</b></normalfont></td>
<td bgcolor="$backcolor"><normalfont><a target="_blank" href="$profilefield[value]">$profilefield[value]</a> </normalfont></td>
</tr>
|
Now, the problem is, that turns *ALL* of my custom fields into URLs. Obviously, that is a bad thing.
Is there any way to only have it change a couple specific ones into URLs?
I don't imagine if() statements work here.