[WOOCS LABS] Compatibility
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 Pablo Borysenco on June 15, 2020, 10:40Hello
I will check it
Hello
I will check it
Quote from Pablo Borysenco on June 18, 2020, 12:55Hello
it's min max settings - https://c2n.me/4836sKX.png
Hello
it's min max settings - https://c2n.me/4836sKX.png
Quote from yoksito on June 18, 2020, 23:16Hello,
i see.
I did it unlimited leaving in blank, but... now Add Funds Botton not work.
Can you check it please
Hello,
i see.
I did it unlimited leaving in blank, but... now Add Funds Botton not work.
Can you check it please
Quote from Pablo Borysenco on June 19, 2020, 11:04Hello
Ok I will check it
Hello
Ok I will check it
Quote from Pablo Borysenco on June 22, 2020, 16:11Hello
Do test please
Hello
Do test please
Quote from yoksito on July 2, 2020, 05:53Hello,
sorry for the delay, i have check and there are 2 issues:
- Setting Minimum deposit amount with: 1
when i try to charge still got the last issue: https://c2n.me/47Yt9r1.png- Setting Minimum deposit amount with: Nothing -> When i try to charge for example 100, in the payment show me other amount.
For last, im wondering if it is still an issue with the adaptation of your plugin, or Yith Fund plugin.
Thank you for your help.
Yok
Hello,
sorry for the delay, i have check and there are 2 issues:
- Setting Minimum deposit amount with: 1
when i try to charge still got the last issue: https://c2n.me/47Yt9r1.png - Setting Minimum deposit amount with: Nothing -> When i try to charge for example 100, in the payment show me other amount.
For last, im wondering if it is still an issue with the adaptation of your plugin, or Yith Fund plugin.
Thank you for your help.
Yok
Quote from Pablo Borysenco on July 2, 2020, 16:28Hello Yok
Do test please!
Hello Yok
Do test please!
Quote from yoksito on July 2, 2020, 19:43Great Job, working fine now.
And now i have a new inquiri respecting about it.
As an example: a customer charge 100EUR, and base currency is: USD.
in the next day, customer loggin in his account, and surprice, he have 99EUR now. This will make to customer think that we stole his 1EUR, meanwhile it was because the base currency exchange and will be a pain to handle it.
How can we do to the Charged funds stay the same amount that customer purchased, and dont change in the next days.
Kind Regards
Yok
Great Job, working fine now.
And now i have a new inquiri respecting about it.
As an example: a customer charge 100EUR, and base currency is: USD.
in the next day, customer loggin in his account, and surprice, he have 99EUR now. This will make to customer think that we stole his 1EUR, meanwhile it was because the base currency exchange and will be a pain to handle it.
How can we do to the Charged funds stay the same amount that customer purchased, and dont change in the next days.
Kind Regards
Yok
Quote from Pablo Borysenco on July 3, 2020, 10:45Hello Yok
Unfortunately, the amount is converted on the fly.
Hello Yok
Unfortunately, the amount is converted on the fly.
Quote from yoksito on July 3, 2020, 23:26Hello Pablo
I understand, no problem.I was thinking how to solve it, checking other websites that work with funds and multicurrencies. And the most convenient was to customer Funds are Fixed in the currency he purchased, and dont change when customer change of currency, if a customer try to buy with other currency and have enough funds, the webpage will ask if he wish to convert his current funds to the purchased currency, and convert to it and discount. Is a bit complex, but im wondering how can i do it, or require an extra plugin?
By other side, when will be updated the changes in live website?
Thank you so much for your help.
Hello Pablo
I understand, no problem.
I was thinking how to solve it, checking other websites that work with funds and multicurrencies. And the most convenient was to customer Funds are Fixed in the currency he purchased, and dont change when customer change of currency, if a customer try to buy with other currency and have enough funds, the webpage will ask if he wish to convert his current funds to the purchased currency, and convert to it and discount. Is a bit complex, but im wondering how can i do it, or require an extra plugin?
By other side, when will be updated the changes in live website?
Thank you so much for your help.
Quote from Pablo Borysenco on July 6, 2020, 10:17Hello
Unfortunately, I have no idea how to do this.
By other side, when will be updated the changes in live website? - I did not understand the question
Hello
Unfortunately, I have no idea how to do this.
By other side, when will be updated the changes in live website? - I did not understand the question
Quote from yoksito on July 7, 2020, 23:44Hello
What i mean is: that changes was made to Test Site, and not to Live site
Hello
What i mean is: that changes was made to Test Site, and not to Live site
Quote from Pablo Borysenco on July 8, 2020, 10:37Hello
Ok! Code:
in file - \wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.yith-ywf-deposit-fund-checkout.php -add code - https://c2n.me/48eJVq2.png
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$amount = $amount / $rate;
}
}
}In file - public_html\wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.yith-ywf-customer.php - add code - https://c2n.me/48eK5Jw.png
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->current_currency != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$new_funds = $new_funds/ $currencies[$WOOCS->current_currency]['rate'];
}
}
in file - \wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.wc-gateway-yith-funds.php - delete code - https://c2n.me/47XuZhJ.png
add_filter( 'yith_show_available_funds',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = $WOOCS->woocs_exchange_value($fund_av);
}
}
return $fund_av;
} );
add_filter( 'yith_show_used_funds',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = $WOOCS->woocs_exchange_value($fund_av);
}
}
return $fund_av;
} );
add_filter( 'yith_min_deposit',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = floor($WOOCS->woocs_exchange_value($fund_av));
}
}
return $fund_av;
} );
add_filter( 'yith_max_deposit',function($fund_av){
if (class_exists('WOOCS') AND $fund_av ) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = ceil($WOOCS->woocs_exchange_value($fund_av));
}
}
return $fund_av;
} );
Hello
Ok! Code:
in file - \wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.yith-ywf-deposit-fund-checkout.php -add code - https://c2n.me/48eJVq2.png
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$amount = $amount / $rate;
}
}
}
In file - public_html\wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.yith-ywf-customer.php - add code - https://c2n.me/48eK5Jw.png
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->current_currency != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$new_funds = $new_funds/ $currencies[$WOOCS->current_currency]['rate'];
}
}
in file - \wp-content\plugins\yith-woocommerce-account-funds-premium\includes\class.wc-gateway-yith-funds.php - delete code - https://c2n.me/47XuZhJ.png
add_filter( 'yith_show_available_funds',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = $WOOCS->woocs_exchange_value($fund_av);
}
}
return $fund_av;
} );
add_filter( 'yith_show_used_funds',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = $WOOCS->woocs_exchange_value($fund_av);
}
}
return $fund_av;
} );
add_filter( 'yith_min_deposit',function($fund_av){
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = floor($WOOCS->woocs_exchange_value($fund_av));
}
}
return $fund_av;
} );
add_filter( 'yith_max_deposit',function($fund_av){
if (class_exists('WOOCS') AND $fund_av ) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$fund_av = ceil($WOOCS->woocs_exchange_value($fund_av));
}
}
return $fund_av;
} );
Quote from yoksito on July 8, 2020, 23:36Thank you so much for your help Pablo, ill do it.
By other side, there is a way to make a compatibility of WOOCS with Boacompra for Woocomerce? I can pay for it.
Thank you so much for your help Pablo, ill do it.
By other side, there is a way to make a compatibility of WOOCS with Boacompra for Woocomerce? I can pay for it.
Quote from Pablo Borysenco on July 9, 2020, 10:51Hello
https://wordpress.org/plugins/boacompra-for-woocommerce/ - unfortunately this plugin is not popular. You can ask the plugin developer to contact us and we will discuss the adaptation with him
I can pay for it. - Sorry, we don’t have time for custom tasks
Hello
https://wordpress.org/plugins/boacompra-for-woocommerce/ - unfortunately this plugin is not popular. You can ask the plugin developer to contact us and we will discuss the adaptation with him
I can pay for it. - Sorry, we don’t have time for custom tasks