Quote:
Originally Posted by Lynne
Perhaps you have a plugin that is adding it? The only way to add custom profile fields to the postbit is by template edit or plugin.
|
Ah, Thank You. You are correct. I found the plugin. Any thoughts on how I can edit to link the field?
Here is the code for how it stands:
Code:
if ($post['field8'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt> SLS Handle</dt> <dd>' .$post[field8]. '</dd>';
}
I need to wrap a link around $post[field8] that uses the info from field8 in the URL, so it would be something like
http://www.url.com/[field8]
but I'm not sure what exactly it should be.