Thanks I may look into that one first.
--------------- Added [DATE]1262612293[/DATE] at [TIME]1262612293[/TIME] ---------------
Quote:
Originally Posted by consolegaming
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.
|
How would I go about making the answer to the profile field bold/strong?
--------------- Added [DATE]1262616491[/DATE] at [TIME]1262616491[/TIME] ---------------
Also how would I go about making a notice to users so they know they need to edit their profile as I run a software support and making it mandatory. This way I will not be or need to mass email users. Kind of like a notice to users if condition isn't met is what I am looking for I do believe.