Quote:
Originally Posted by vBNinja
Add a new plugin:
Product: vBulletin
Hook Location: member_profileblock_profilefieldbit
Name: Show Profile Field as link
Execution Order: 5
PHP Code:
if($profilefield['profilefieldid'] == X){
$profilefield['value'] = "<a href=\"{$profilefield['value']}\">{$profilefield['value']}</a>";
}
Change X to your own profiled field ID
Plugin is active: yes
|
Thanks!
Do you have an idea how to change the link to the value of the selected option in case of an drop down menu? If I make an advanced member search by using a custom field and a dropdown menu I get the value of the selected option in the url. Is there a way to modify this code in the same way to get the value of the dropdown option?