Quote:
Originally Posted by Queball_Beast
Hi,
I`m also trying to change " 0.00$ " to " $0.00 " I open the "postbit_display_complete" but still have no idea what to edit, I see " $this , $those and $post " but no idea what to do or change, so any added intructions you give would be great.
Thanks 
|
Replace the code in "Display Points in Postbit" plugin for Nexia's hack.
The code you should see is
PHP Code:
$this->post['nex_points_hand'] =
vb_number_format($this->post['nex_points_hand'], $this->registry->options['nex_points_currency_decimal']) .
$this->registry->options['nex_points_currency_name_symbol'];
$those_points = ucfirst($this->registry->options['nex_points_currency_names']);
if($this->registry->options['nex_points_hook_postbit_display_complete'])
{
$post[posts] .= '</div><div>' . $those_points . ': ' . $this->post['nex_points_hand'];
}
Delete the entire code and paste
PHP Code:
$this->post['nex_points_hand'] =
$this->registry->options['nex_points_currency_name_symbol'] .
vb_number_format($this->post['nex_points_hand'], $this->registry->options['nex_points_currency_decimal']);
$those_points = ucfirst($this->registry->options['nex_points_currency_names']);
if($this->registry->options['nex_points_hook_postbit_display_complete'])
{
$post[posts] .= '</div><div>' . $those_points . ': ' . $this->post['nex_points_hand'];
}