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

fixed amount of currency addition on currency conversion

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.. I am using this plugin for currency switching in my e-commercial website. I  have 2 currencies INR and Dollar respectively. My requirement is to add 200 INR  converting upon INR to Dollar.

Kindly help me out with the same.

Hello

You  can  add  interes( https://c2n.me/46a3eMx.png )   to  the  rate.

Or  read  this please - https://currency-switcher.com/how-to-manipulate-with-currencies-rates/

OR  use  these  hooks  to  change  prices - https://currency-switcher.com/hook/woocs_raw_woocommerce_price/   AND  https://currency-switcher.com/hook/woocs_woocommerce_variation_prices/

I got your email on above query but it is not helpful.

Requirement: Example - suppose my product price is 209 INR and when i convert that to USD it should be (209+200)INR = respective dollar rate.

Hello

OK! You need customization of the code.

use  these  hooks  to  change  prices - https://currency-switcher.com/hook/woocs_raw_woocommerce_price/   AND  https://currency-switcher.com/hook/woocs_woocommerce_variation_prices/

To  check  current  currency - https://currency-switcher.com/function/woocs-current_currency/

In these hooks, check the current currency, if it is INR add to the price + 200

Hi,

Can you help me with the code to achieve this.

Hi

Kindly help me out with the issue as we are using premium plugin.

Hello

Paste your license key here - https://c2n.me/43SC6rb.png -> https://c2n.me/42HBIt7.png

If you have experience in programming, I will be happy to help you. Unfortunately, customization of the code is not included in the support.

Hi I have added my purchase code. Please help me out with code.

Hello

Ok!

Do you have experience in programming?

yes.

Hello

So  use  this  hooks - https://currency-switcher.com/hook/woocs_raw_woocommerce_price/   AND  https://currency-switcher.com/hook/woocs_woocommerce_variation_prices/

To  change  price

global $WOOCS;
if($WOOCS->current_currency=='INR'){

$price+=200;

}

Hello,

Can you help me out where to add this code in. I have added it in function.php in theme folder. But its not showing the required output.

Hello

Ok! Please  drop me  screenshot of  your  code

In functions.php, I have added the code which you sent

global $WOOCS;
if($WOOCS->current_currency=='INR'){

$price+=200;

}

Hello

Please - https://c2n.me/46sJyKH.png

Read  this - https://www.wpbeginner.com/glossary/hooks/