Willkommen im Forum!
...
Der Link verweist dann auf "meineseite/<a href" ......
Das Problem betriff nur "links" und wenn du damit so wie du ein Bild verlinken möchtest, ansonsten wäre dein vorgehen richtig.
Damit das ganze jetzt auch mit dem verlinkten Bild funktioniert:
suche in der member.php:
$site_template->register_vars($additional_field_array);
}
und füge darunter ein:
$site_template->register_vars("user_facebook", (!empty($user_row['user_facebook'])) ? "".format_text($user_row['user_facebook'], 2)."":"");
mfg Andi
Hi. I'm having the same problem as stillman. I followed your instructions (I think. Google translate isn't very good sometimes), and I'm still having trouble. The link is still broken, and the information doesn't appear in the field in edit-profile any more, even though it's still in the database.
I tried:
*DELETED previous bad code*
Didn't work either. Any ideas what I can do to get links working in additional fields?
*EDIT* Nevermind. I was editing in the wrong place. It's working now. I used this code:
$user_job_link = (isset($user_row['user_job_link'])) ? format_text(format_url($user_row['user_job_link']), 2) : REPLACE_EMPTY;
if (!empty($user_job_link)) {
$site_template->register_vars(array(
"user_job_link" => $user_job_link
));