I'm having a bit of trouble somewhere with this. I decided to go the plugin method for multiple selection fields, as it seemed to offer the means to set different things to display based on the option selected. Unfortunately, I haven't been able to get any further than it
displaying "house memberships" (the field name) on the postbit.
I'm not sure whether I've even used the right method or not but the "single selection menu" method didn't appear to have the options to display a different result based on what was selected in the profile menu.
Would it be possible for someone to tell me where I've gone wrong? (I get the sensation I'll be asking this a lot -sigh-) Thank you in advance
Plugin code:
Code:
if ($post['field17'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>House Membership</dt> <dd>';
if ($post['field17'] & 1) $template_hook['postbit_userinfo_right_after_posts'] .= '<img src="http://i.imgur.com/TdZqV1q.gif?1" title="Ravenclaw" alt="Ravenclaw" />';
if ($post['field17'] & 2) $template_hook['postbit_userinfo_right_after_posts'] .= 'Montresor';
if ($post['field17'] & 4) $template_hook['postbit_userinfo_right_after_posts'] .= 'Astor';
if ($post['field17'] & 8) $template_hook['postbit_userinfo_right_after_posts'] .= 'Lore';
if ($post['field17'] & 16) $template_hook['postbit_userinfo_right_after_posts'] .= 'Bluteisen-Ravenclaw';
if ($post['field17'] & 32) $template_hook['postbit_userinfo_right_after_posts'] .= 'Pendrake';
$template_hook['postbit_userinfo_right_after_posts'] .= '</dd>';
}