Quote:
Originally Posted by Charlie98902
Well I asked for the plugin to get updated but I have no issue doing a template edit as the plugin for 3.8 lacked if you were able to choose several options for one field and the text wrap was a bug but fixable.
Thanks for the info so I can start on this in my test forum.
|
Well I don't know about Vaupell but I just use a custom plugin and then attach it to a hook at the end. i.e.
PHP Code:
if($post[field9]) $html .= '<dt>Clan</dt> <dd>'.$post[field9].'</dd>';
if($post[field5]) $html .= '<dt>PS2</dt> <dd>'.$post[field5].'</dd>';
if($post[field6]) $html .= '<dt>PS3</dt> <dd>'.$post[field6].'</dd>';
if($post[field7]) $html .= '<dt>XBL</dt> <dd>'.$post[field7].'</dd>';
if($post[field8]) $html .= '<dt>Wii</dt> <dd>'.$post[field8].'</dd>';
$html .='<br /><br />';
$template_hook['postbit_userinfo_right_after_posts'] .= $html;
I just have that as a plugin attached to the postbit_display_start hook and that works great for me. And no template changes needed.
It's just an alternative way of doing the same thing.