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 pleaseIf 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.
Quote from ashwini07 on February 25, 2020, 12:11Hi.. 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.
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.
Quote from Pablo Borysenco on February 25, 2020, 12:50Hello
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/
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/
Quote from ashwini07 on February 25, 2020, 13:51I 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.
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.
Quote from Pablo Borysenco on February 26, 2020, 15:29Hello
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
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
Quote from ashwini07 on February 26, 2020, 17:01Hi,
Can you help me with the code to achieve this.
Hi,
Can you help me with the code to achieve this.
Quote from ashwini07 on February 27, 2020, 10:28Hi
Kindly help me out with the issue as we are using premium plugin.
Hi
Kindly help me out with the issue as we are using premium plugin.
Quote from Pablo Borysenco on February 27, 2020, 13:54Hello
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.
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.
Quote from ashwini07 on March 11, 2020, 14:31Hi I have added my purchase code. Please help me out with code.
Hi I have added my purchase code. Please help me out with code.
Quote from Pablo Borysenco on March 12, 2020, 12:17Hello
Ok!
Do you have experience in programming?
Hello
Ok!
Do you have experience in programming?
Quote from Pablo Borysenco on March 12, 2020, 12:55Hello
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
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;
}
Quote from ashwini07 on March 12, 2020, 13:36Hello,
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,
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.
Quote from Pablo Borysenco on March 13, 2020, 11:44Hello
Ok! Please drop me screenshot of your code
Hello
Ok! Please drop me screenshot of your code
Quote from ashwini07 on March 13, 2020, 11:52In functions.php, I have added the code which you sent
global $WOOCS;
if($WOOCS->current_currency=='INR'){$price+=200;
}
In functions.php, I have added the code which you sent
global $WOOCS;
if($WOOCS->current_currency=='INR'){
$price+=200;
}
Quote from Pablo Borysenco on March 16, 2020, 12:33Hello
Please - https://c2n.me/46sJyKH.png
Read this - https://www.wpbeginner.com/glossary/hooks/
Hello
Please - https://c2n.me/46sJyKH.png
Read this - https://www.wpbeginner.com/glossary/hooks/