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

I struggle to display EUROS but charge in GBP

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 team,

My Amazon Pay Account was created in United Kingdom in GBP. (Amazon Pay works perfectly on my UK site)

However, I have a little problem on my EUR site, where prices are displayed in EUR but Amazon Pay obligues me to charge in GBP.  So, how can I display EUR on my sites but charge in GBP at the exact exchange rate?

For example, the customer will see price 100€, but when paying on Amazon Pay they will pay 85.20GBP.

 

Thanks for your help.

Kind regards

David.

 

 

 

Hello David.

Yes. On the site, the user can see prices in any currency. But on the checkout page, the user should see the currency in which the order will be placed

Thank you but you missed my question:   how can I display EUR on my sites but charge in GBP at the exact exchange rate?  AT THE EXACT EXCHANGE RATE

I am struggling to setup the Website currency in EUR, but charge in GBP.  I have tried all ways, but I can´t find the right way.

 

 

 

 

Is there any way I can send you an screenshot of my configuration?  This ticket system doesn´t allow me to send screenshots

Please watch the video - https://currency-switcher.com/video#video_1

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

You can use services to transfer images by link

Image here:  https://www.awesomescreenshot.com/image/27118009?key=de4f6560d1a815516a20dd3d0acb7306

Thank you but my problem is not related to dropdowns or switching currencies.    GENERIC TUTORIALS that doesn´t help me at all.

Please understand my problem:   How can I display EUROS but charge on GBP?   That is, the customer sees 100EUR on the products but on checkout pays 85GBP

Please be specific...

Kind regards

David.

 

 

 

Hello David.

Please  read  my  message - https://share.pluginus.net/image/i20220516082827.png -  Yes, on the store page, the user can see products in euros but on the checkout page, the user will see products in GBP

 

 

But how??   I have been touching all options in your plugin and I CANNOT MAKE IT WORK.  https://www.awesomescreenshot.com/image/27118009?key=de4f6560d1a815516a20dd3d0acb7306

 

Please DONT SEND ME TUTORIALS for my problem.  Provide me REAL SUPPORT and investigate my problem

I have tried ALL OSSIBLE COMBINATIONS. I have tried all Options, Advance Options and setup possibilitues and I CANNOT DISPLAY EUROS but charge on GBP-

 

It is impossible!

 

Are you Support?  Or your work is just forwarding tutorials?

 

PLEASE ESCALATE MY PROBLEM.  So frustrating!!!

 

 

 

Hello David.

Please be careful, I gave you the solution already in the second message. I understand what you want to get, but you do not follow my recommendations.

And it is very important for you to watch the video so that you understand how the plugin works

solution - https://share.pluginus.net/image/i20220517080531.png Perhaps you are unable to open the link with the solution. So  please  add  this  code  in  functions.php:

add_filter('wp_head',function(){


if(is_checkout()){

global $WOOCS;

$WOOCS->set_currency('GBP');


}

});

If you want the user on the shop page to see prices only in EUR

add_filter('wp_head',function(){


if(is_checkout()){

global $WOOCS;

$WOOCS->set_currency('GBP');


}else {

global $WOOCS;

$WOOCS->set_currency('EUR');

}

});

 

Another solution:  This is described in the video (I recommend watching this video) - https://share.pluginus.net/image/i20220517081301.png