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

problems with the currency when clearing the cache

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 [noreply@pluginus.net] 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.

Good morning, thanks for your plugin, I am really grateful.

I am from Venezuela and the current currency is the bolivar, but in my store we sell all products in USD.

Today I would like to request your help because I really need it, I am using USD as the main currency, for everything. But I would like the approximate cost to be shown in another currency, something like a reference information on the payment page and the cart, I select the option"Show approximate quantity" from the options menu.

Also put in the geoip option the country in which I want this referential value to appear, the problem is that when purging the cache, the prices become Bolivares, which is my second currency.

I only want the value of the product in Bolivar to be shown as a reference or guide value. and the page continues to have the dollar USD as its main currency

is it possible to fix this?

can you help me in any way?

Sorry if maybe I did not explain so well, but I really need it.

 

 

 

 

 

 

In short, what I would like to achieve is that my entire page is handled in USD but in the option of the payment page, the client is indicated the amount in Bolivares which is my other currency. something very similar to the option to show approximate amount of the plugin. The issue is that this is applied by geoip, so the venezuelan customers see the prices in bolivares and I don't want that, I want them to see them in USD dollars and on the payment page they only see dollars and a reference of how much the amount would be in their local currency that is the bolivar

 

thanks for you help and time

Hello

 I want them to see them in USD dollars and on the payment page they only see dollars  - It's impossible! The user can make a payment in the currency that is displayed on the checkout page

You can try to add  this  code:

add_filter('wp_head',function(){
if(is_checkout()){
global $WOOCS;
$WOOCS->set_currency('VEF');
}else{

global $WOOCS;
$WOOCS->set_currency('USD');

}
});