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

Home currency to PayPal friendly

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.

Hi there,

  1. I'm looking for functionality to show home currency (AED) everywhere (not recognized by Paypal) but to convert to USD on PayPal checkout.
  2. I need to make sure that everything works with woo subscription as well.

Could you please tell me is there any step by step tutorial to achieve 1 & 2. I'm a little bit overloaded (confused) with to many informations.

Thank you in advance

M

Hello

1 Read this  please - https://currency-switcher.com/force-currency-on-checkout-page/

In  your case:

 

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

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

}
});

2 read  this - https://currency-switcher.com/woocs-labs/