Any custom php script to convert an amount to another currency?
-
Hello,
I use another multi currency plugin and I am considering trying booster! However one of the things I need is to be able to convert an amount from the shop base currency to whatever the current currency is, in custom locations. Is there an example of some kind of php filter or code (or shortcodes) I could use to do this? For example, at the moment I use something like this with my current plugin:
$base_currency = get_option('woocommerce_currency'); $current_currency = get_woocommerce_currency(); $totalsales = $order_totals->total_sales; $totalsales_converted = apply_filters('plugin_currency_convert', $totalsales, $base_currency, $current_currency);
Could I do something similar with booster?
Thanks!
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Any custom php script to convert an amount to another currency?’ is closed to new replies.