The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
||||
|
||||
![]()
Create a plugin on the member_customfields hook, and turn the urls into links. Where 6 is the profile field ID.
Code:
if ($profilefield['value'] != '' AND $profilefield[profilefieldid] == 6) { $links = explode ("\n", $profilefield['value']); $output = array(); foreach ($links as $link) { $link = trim($link); if (!empty($link)) { $output[] = '<a href="' . $link . '">' . $link . '</a>'; } } $profilefield['value'] = implode('<br />', $output); } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|