Thanx... guess what..
I got it working for me... :banana:
It was a little tricky though
And as I am a newbie to vbulletin (used to hack only phpbb boards) i could never put this into a plugin..
(and as there allready was a fileedit.. i think this will cost less ressources)
ATTENTION I only tested it with the multiple checkbox example in your file..
so what i did:
first find in memberlist.php
PHP Code:
if ($value['type'] == 'checkbox' OR $value['type'] == 'select_multiple')
{
unset($customfield);
foreach ($value['data'] AS $key => $val)
{
if ($userinfo["$value[varname]"] & pow(2, $key))
{
$customfield .= iif($customfield, ', ') . $val;
}
}
}
else
{
$customfield = $userinfo["$value[varname]"];
}
and replace with:
PHP Code:
// ########### Lang hack part one ---start ########
if ($value['type'] == 'checkbox' OR $value['type'] == 'select_multiple')
{
unset($customfield);
foreach ($value['data'] AS $key => $val)
{
if ($userinfo["$value[varname]"] & pow(2, $key))
{
$phraseprffld = '';
$testforphrase = substr(trim($val), 0, 1);
if ($testforphrase == '$')
{
$prffldphrase = substr(trim($val), 1);
$val = $vbphrase[$prffldphrase];
}
$customfield .= iif($customfield, ', ') . $val;
}
}
}
else
{
$phraseprffld = '';
$testforphrase = substr(trim($userinfo["$value[varname]"]), 0, 1);
if ($testforphrase == '$')
{
$prffldphrase = substr(trim($userinfo["$value[varname]"]), 1);
$customfield = $vbphrase[$prffldphrase];
}
else
{
$customfield = $userinfo["$value[varname]"];
}
}
// ########### Lang hack part one ---end ########
then find:
PHP Code:
$customfield = $customfield['title'];
and
ABOVE add:
PHP Code:
// ########### Lang hack part two ---start ########
$testforphrase = substr($customfield['title'], 0, 1);
if ($testforphrase == '$')
{
$prffldtitle = substr($customfield['title'], 1);
$customfield['title'] = $vbphrase[$prffldtitle];
}
// ########### Lang hack part two ---end ########
Well for me it seems to work!!!!
Felix