I just edited the admincp/subscriptions.php
I changed the code
from this
PHP Code:
print_input_row($vbphrase['cost_in_us_dollars'], 'sub[cost][usd]', number_format($sub['cost']['usd'], 2));
print_input_row($vbphrase['cost_in_pounds_sterling'], 'sub[cost][aud]', number_format($sub['cost']['gbp'], 2));
print_input_row($vbphrase['cost_in_euros'], 'sub[cost][eur]', number_format($sub['cost']['eur'], 2));
to this
PHP Code:
print_input_row($vbphrase['cost_in_us_dollars'], 'sub[cost][usd]', number_format($sub['cost']['usd'], 2));
print_input_row($vbphrase['cost_in_aud'], 'sub[cost][aud]', number_format($sub['cost']['aud'], 2));
print_input_row($vbphrase['cost_in_euros'], 'sub[cost][eur]', number_format($sub['cost']['eur'], 2));
I also edited the functions_subscriptions.php in the includes.
PHP Code:
// ######################## Define supported curencies ###################
$_SUBSCRIPTIONS['curencies'] = array(
'paypal' => array('usd' => true, 'aud' => true, 'gbp' => true, 'eur' => true),
'nochex' => array('gbp' => true),
'worldpay' => array('usd' => true, 'gbp' => true, 'eur' => true),
'authorize' => array('usd' => true, 'gbp' => true, 'eur' => true)
It seems to be doing the trick.. hopefully im not breaking anything.. im fairly new to this.