Hey Dartho perhaps you can help.
I am trying to style the cash in Postbit.
I have edited plugin ( postbit_display_complete) but its producing errors and I cannot see why:
Original code is:
Code:
if (($vbulletin->options['vbookieactive']) && ($vbulletin->options['vbookiecash']=="vCash") && ($vbulletin->options['vbookiecashon']))
{
$template_hook[postbit_userinfo_right_after_posts] .= "<dt>".$vbphrase['vbookie_vcash']."</dt> <dd><b>$ </b>".$post['vbookie_cash']."</dd>";
}
What I want to do is put this in a div . like so:
Code:
if (($vbulletin->options['vbookieactive']) && ($vbulletin->options['vbookiecash']=="vCash") && ($vbulletin->options['vbookiecashon']))
{
$template_hook[postbit_userinfo_right_after_posts] .= "<div class="australia_postbit">".$vbphrase['vbookie_vcash']." : <b>$ </b>".$post['vbookie_cash']."</div>";
}
Getting errors when parsing the template ( is it the : that is causing the error do you think ? )