Currency payment rules issue
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 kally_chong on August 26, 2019, 03:19Hi, i am facing an issue. Currently my default currency is USD, if i use SGD and add item to the cart, it will show the usd amount in the cart instead of the SGD. https://prnt.sc/ovfxtr pls check to the screenshot thank you
my website url is http://myenchanter.com.
Hi, i am facing an issue. Currently my default currency is USD, if i use SGD and add item to the cart, it will show the usd amount in the cart instead of the SGD. https://prnt.sc/ovfxtr pls check to the screenshot thank you
my website url is http://myenchanter.com.
Quote from Pablo Borysenco on August 26, 2019, 14:23Hello
Please read this - https://currency-switcher.com/currency-recounts-wrong-double-zero-and-others/
https://c2n.me/43gydtc.jpg - This functionality seems to be causing the problem.
Hello
Please read this - https://currency-switcher.com/currency-recounts-wrong-double-zero-and-others/
https://c2n.me/43gydtc.jpg - This functionality seems to be causing the problem.
Quote from kally_chong on August 27, 2019, 03:39Hi There,
Thank you for the checking. But previously it don't have this kind of issue. Just after i enable the function multiple allowed which is customer will pay with selected currency. Can you pls help? coz i really dont have idea how to solve this. And the field of the dimension is the must. I couldn't remove it.
Thank you
Hi There,
Thank you for the checking. But previously it don't have this kind of issue. Just after i enable the function multiple allowed which is customer will pay with selected currency. Can you pls help? coz i really dont have idea how to solve this. And the field of the dimension is the must. I couldn't remove it.
Thank you
Quote from Pablo Borysenco on August 27, 2019, 13:26Hello
Please read this - https://currency-switcher.com/woocs-labs/
Hello
Please read this - https://currency-switcher.com/woocs-labs/
Quote from kally_chong on August 28, 2019, 03:11Hi Pablo,
Can you advice more? As checked, i am using WC Fields Factory whereby i couldn't find it in the provided link page.
Thank you and appreciate.
Hi Pablo,
Can you advice more? As checked, i am using WC Fields Factory whereby i couldn't find it in the provided link page.
Thank you and appreciate.
Quote from Pablo Borysenco on August 28, 2019, 13:10Hello
Read this please - https://c2n.me/43iSaZA.png
Please drop me wp-admin+FTP access - https://c2n.me/42BAoj4.png
Hello
Read this please - https://c2n.me/43iSaZA.png
Please drop me wp-admin+FTP access - https://c2n.me/42BAoj4.png
Quote from kally_chong on August 30, 2019, 08:25Hi,
i already added in the private data field. Pls check again.
Thank you
Hi,
i already added in the private data field. Pls check again.
Thank you
Quote from Pablo Borysenco on August 30, 2019, 12:04Hello
Please add FTP access
Hello
Please add FTP access
Quote from kally_chong on September 2, 2019, 02:52Hi Pablo,
Added. Pls assist & update to me asap . thank you so much
Hi Pablo,
Added. Pls assist & update to me asap . thank you so much
Quote from Pablo Borysenco on September 2, 2019, 11:30Hello
Ок! I added this plugin to the adaptation queue
Hello
Ок! I added this plugin to the adaptation queue
Quote from kally_chong on September 2, 2019, 11:32Hi Pablo,
What you mean by adaptation queue? Meaning still pending to settle?
Thank you
Hi Pablo,
What you mean by adaptation queue? Meaning still pending to settle?
Thank you
Quote from kally_chong on September 3, 2019, 08:35Hi Pablo,
Any update? coz already pending for a week. Pls assist and update me asap.
Appreciate
Hi Pablo,
Any update? coz already pending for a week. Pls assist and update me asap.
Appreciate
Quote from Pablo Borysenco on September 3, 2019, 12:46Hello
coz already pending for a week. - ?? - I received data from you only yesterday( https://c2n.me/43oMnsO.png )
What you mean by adaptation queue? - Many users want to make compatibility with a third-party product for free.
Meaning still pending to settle? - Yes you should wait for your turn. also - https://c2n.me/43oN3Zj.png
Hello
coz already pending for a week. - ?? - I received data from you only yesterday( https://c2n.me/43oMnsO.png )
What you mean by adaptation queue? - Many users want to make compatibility with a third-party product for free.
Meaning still pending to settle? - Yes you should wait for your turn. also - https://c2n.me/43oN3Zj.png
Quote from kally_chong on September 6, 2019, 11:06Hi Pablo,
Understand your concern. But all the conversations since start already 15 days passed..
Might to check roughly when will be my turn? Coz at least i can answer to my superior as well. Thank you and hope for your understanding.
Hi Pablo,
Understand your concern. But all the conversations since start already 15 days passed..
Might to check roughly when will be my turn? Coz at least i can answer to my superior as well. Thank you and hope for your understanding.
Quote from Pablo Borysenco on September 6, 2019, 11:46Hello
But all the conversations since start already 15 days passed.. - Yes, you are right! But you provided the opportunity to fix this recently. Without all the data, we do not add the plugin to the adoption queue. This is to prevent the queue from getting stuck.
There is a high probability that we will do it today
Hello
But all the conversations since start already 15 days passed.. - Yes, you are right! But you provided the opportunity to fix this recently. Without all the data, we do not add the plugin to the adoption queue. This is to prevent the queue from getting stuck.
There is a high probability that we will do it today
Quote from Pablo Borysenco on September 6, 2019, 17:44Hello
Please do test.
Add code in functions.php
add_filter( "wcff_negotiate_price_after_calculation",function($price){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$conversion_rate = $currencies[$WOOCS->current_currency]['rate'];
$price = $price / $conversion_rate;
}
}return $price;
});
Hello
Please do test.
Add code in functions.php
add_filter("wcff_negotiate_price_after_calculation",function($price){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$conversion_rate = $currencies[$WOOCS->current_currency]['rate'];
$price = $price / $conversion_rate;
}
}
return $price;
});
Quote from kally_chong on September 9, 2019, 09:32Hi,
I added to the child theme function.php. But it looks not working. Pls see this screenshot:
Thank you
Hi,
I added to the child theme function.php. But it looks not working. Pls see this screenshot:
Thank you
Quote from Pablo Borysenco on September 9, 2019, 12:25Hello
Please do test!
Hello
Please do test!
Quote from kally_chong on September 10, 2019, 02:54Hi Pablo,
Can already! Thank you so much. But so weird, yesterday i tried but not works.
Hi Pablo,
Can already! Thank you so much. But so weird, yesterday i tried but not works.
Quote from Pablo Borysenco on September 10, 2019, 12:08Hello
I already added this code and you did it again - this caused the shop to work incorrectly. I just deleted your code
Hello
I already added this code and you did it again - this caused the shop to work incorrectly. I just deleted your code