It took me a couple hours to figure it out due to process of elimination and with your help above as well- but the following works for me:
Create a plugin using hook location member_complete with following code:
Code:
$custom_field_qry = $db->query_read("SELECT data from ". TABLE_PREFIX."profilefield where profilefieldid = '26' ");
$custom_field_ary = $db->fetch_array($custom_field_qry);
$my_custom_data = unserialize($custom_field_ary['data']);
foreach($my_custom_data AS $key => $val)
{
if ($userinfo[field26] & pow(2,$key))
{
$show[testbit] .= $val.", ";
}
}
and include $show[testbit] in the template...
BUT...
It does however add 1 additional query to the page. I don't understand why it needs to run another query at all, since the correct serialized data is already in $userinfo[field26] to begin with, but it does now work at the least.
I was attempting to unserialize the data and match it up without having to run the additional query above. I tried the following, but I am still a beginner with php and it wasn't working properly.
Code:
$my_custom_data = unserialize($userinfo['field26']);
foreach($my_custom_data AS $key => $val)
{
if ($userinfo[field26] & pow(2,$key))
{
$show[testbit] .= $val.", ";
}
}