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

[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 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.
12

Hello

I will  check  it

Hello

it's  min max settings - https://c2n.me/4836sKX.png

Hello,

i see.

I did it unlimited leaving in blank, but... now Add Funds Botton not work.

 

Can you check it please

Hello

Ok I will  check it

Hello

Do  test  please

Hello,

sorry for the delay, i have check and there are 2 issues:

  1. Setting Minimum deposit amount with: 1
    when i try to charge still got the last issue: https://c2n.me/47Yt9r1.png
  2. 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 Yok

Do test  please!

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

Hello Yok

Unfortunately, the amount is converted on the fly.

 

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.

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

Hello

What i mean is: that changes was made to Test Site, and not to Live site

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;
} );

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.

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

12