How do I enable clickable links in custom user fields?
Edit displayimage.php and change $info[$CONFIG[‘user_field’.$i.’_name’]] = make_clickable($CURRENT_PIC_DATA[‘user’.$i]); into $info[$CONFIG[‘user_field’.$i.’_name’]] = bb_decode($CURRENT_PIC_DATA[‘user’.$i]); This will allow you to use BBCodes in the custom fields: you can then have something like [url]http://www.somesite.com/foo/bar.php?whatever=42[/url] or [url=http://www.somesite.com/foo/bar.php?whatever=42]link to some site![/url] in your custom user fields (the display of which, of course, has to be enabled in the config page, begin with).