Re: PayPal Currency
To ADD your currency, you need to edit the file:
/themes/classipress/functions/admin-options.php
On line 265 I think you can add above this line:
<option value="USD"<?php if (get_option("paypal_currency") == "USD") { echo ' selected="selected"'; } ?>>U.S. Dollars ($
</option>
This:
<option value="AUD"<?php if (get_option("paypal_currency") == "AUD") { echo ' selected="selected"'; } ?>>AU Dollars ($
</option>
Just make sure you have configure in your Paypal account to receive payments in AU Dollars.