I played around with the code and managed to get this to actually work:
Code:
if ($userinfo[field13] != '')
{
$links = explode (",", $userinfo[field13]);
$output = array();
foreach ($links as $link)
{
$link = trim($link);
if (!empty($link))
{
$output[] = '<a href="' . $link . '">' . $link . '</a>';
}
}
$userinfo[field13] = implode(', ', $output);
}
The user inputed "English, French, Russian" and it shows up as "
English,
French,
Russian" as separate links which is what I want.
HOWEVER, it does not obviously link to the proper area inside my memberlist.php file which is what I need. It just links to mydomain.com/English.
Here is the code from another hack which seems should work, but I don't know how to adapt it to work with my current code:
https://vborg.vbsupport.ru/showthread.php?p=1462022
Code:
if ($profilefield['value'] != '')
{
$linkedfields = explode("|", $vbulletin->options['profilefieldtagslist']);
if (in_array($profilefield['profilefieldid'], $linkedfields))
{
if ($profilefield['type'] == 'input' OR $profilefield['type'] == 'textarea')
{
$fieldvalues = explode(",", $profilefield['value']);
$profilefield['value'] = '';
foreach ($fieldvalues as $fieldvalue)
{
$profilefield['value'].= '<a href="' .$vbulletin->options['bburl']. '/memberlist.php?' .$vbulletin->session->vars['sessionurl']. 'do=getall&field' .$profilefield[profilefieldid]. '=' .trim($fieldvalue). '">' .$fieldvalue. '</a>, ';
}
$profilefield['value']= substr_replace($profilefield['value'],'',-2);
$userinfo['field' . $profilefield[profilefieldid]] = $profilefield['value'];
}
Based on this I just need the linkable part incorporated into the code, but he uses things such as $fieldvalues which I am unsure of how to incorporate. Any help would be appreciated!
==========UPDATE=============
I managed to get it working perfectly!
Code:
if ($userinfo[field13] != '')
{
$links = explode (",", $userinfo[field13]);
$output = array();
foreach ($links as $link)
{
$link = trim($link);
if (!empty($link))
{
$output[] = '<a href="' .$vbulletin->options['bburl']. '/memberlist.php?' .$vbulletin->session->vars['sessionurl']. 'do=getall&field13=' .trim($link). '">' . $link . '</a>';
}
}
$userinfo[field13] = implode(', ', $output);
}
Took me some time, but i figured out how to transfer the code over. I had to hard code the Field ID though, so right now I'm in the process of looking up how to setup a proper PHP Array to allow for multiple profile fields to work.