PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

How to Set USD as Admin Input Currency While Showing A Different One to Customers?

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [[email protected]] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hi there,

I’m using the free version of FOX - Currency Switcher for WooCommerce, and I’m trying to achieve the following setup:

  • I want to input product prices in USD when creating or editing products in the WooCommerce admin.
  • Then, on the front end, I want the plugin to convert those USD prices to ARS (Argentine Pesos) based on a manually set exchange rate.
  • In other words, USD would be my store’s internal currency, and ARS would be used only for display to customers.

Currently, my WooCommerce base currency is ARS, and when I switch to USD using the plugin, the displayed amount changes, but the actual price input is still in ARS, which leads to confusion and extra work during price updates.

Is there a way to set things up so that:

  1. I input prices in USD in the product editor,
  2. The plugin then converts those prices to ARS for front-end display?

Do I need the PRO version for this functionality, or is it possible in the free version using the"Fixed Prices Rules" or any other setting?

Thanks in advance.

Hello

I think the free version of the plugin is enough for you

For this functionality I recommend you make USD as the base currency

And  in  functions.php   add code:

add_filter('wp_head',function(){    
    if(class_exists('WOOCS')){
        global $WOOCS;
        $WOOCS->set_currency('ARS');
 }
});