I would like to manually add the vcash on the postbit, so I guess I would disable the postbit plugin, and then manually add the vcash command to the postbit template?
this is the plugin code
PHP Code:
$template_hook[postbit_userinfo_right_after_posts] .= "<dt>".$vbphrase['vbookie_vcash']."</dt> <dd>".$post['vbookie_cash']."</dd>";
how would I call it manually in the postbit template, just use the .$post['vbookie_cash'] ?
Answering myself, but this seems to work fine for manually adding the vcash to the postbit
PHP Code:
<dt>{$vbphrase[vbookie_vcash]}</dt> <dd>{$post[vbookie_cash]}</dd>