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

WooCommerce Deposits (by WooCommerce)

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.

Please provide addition for the WooCommerce Deposits (by WooCommerce) plugin

The deposit amount is not changing when switching the currency.

The instruction provided is old and not working with current version

 

Thanks

Hello

I added this to the adaptation queue

Nothing until Now

Hello

I will write to you as soon as I get the result

Hello

Please  do a test

The adaption is NOT working correctly for the WooCommerce Deposits

It works INCORRECTLY on the SHOPPING CART

View post on imgur.com

It does NOT work at all on the product page

View post on imgur.com

Please use the following product URL for test

https://new.bena.world/shop/construction-equipment/mercedes-loader/

Hello

Ok! I  will check  it

Hello

Please  doa test

In  functions.php  I Added:

add_filter('woocommerce_deposits_fixed_deposit_amount', function ($deposit, $prod) {
if (class_exists('WOOCS')) {
global $WOOCS;
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency AND $WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$deposit = $deposit * $rate;
}
}
return $deposit;
}, 2, 99);