When I enable that plugin, the field I'm applying it to doesn't show up.
My field ID is 9, and this is what I have for the plugin:
Code:
if ($profilefield['value'] != '' AND $profilefield[profilefieldid] == 9)
{
$links = explode ("\n", $profilefield['value']);
$output = array();
foreach ($links as $link)
{
$link = trim($link);
if (!empty($link))
{
$ouput[] = '<a href="' . $link . '">' . $link . '</a>';
}
}
$profilefield['value'] = implode('<br />', $output);
}
I've tried it on a multiline text box and a single line text box; both are displaying nothing when enabled, and only the plain text when disabled. What am I doing wrong?