Hello, @joni54321!
Please, try to enable the option Pricing Rules>Settings>Calculation>Use prices modified by get_price hook.
If the problem persists, please, send us a zip archive with CURCY – WooCommerce Multi Currency Premium and submitted our JSON system report as a new ticket via our helpdesk.
Actually there also seem to be issue with WooCommerce Product Bundles.
Its kinda weird becaus there is no problem if only one of the plugins is enabled. If Advanced Dynamic Pricing for WooCommerce or WooCommerce Product Bundles is disabled, there is no more problem
Hello
We don’t have ready-made solution for this case.
Please, submit ticket to helpdesk (see previous message).
>Actually there also seem to be issue with WooCommerce Product Bundles.
@joni54321, we have already had one very tricky case with these plugins (our Advanced Dynamic Pricing, CURCY by VillaTheme and WooCommere Product Bundles). Unfortunately, these three plugins impossible to use together.
Thank you for the information. It seems that your plugin is also conflicting with WooCommerce Smart Coupons . When its activated the coupons show 0 https://i.imgur.com/z6s1aJD.png . Do you know anything about that?
@joni54321 please, insert this compatibility code into the functions.php of your theme or using code snippets plugin:
function wt_sc_alter_wdp_calculate_totals_hook_priority($priority) {
$priority=999;
return $priority;
}
add_filter('wdp_calculate_totals_hook_priority', 'wt_sc_alter_wdp_calculate_totals_hook_priority');
Thank you, seems to work.
So basically it fixes the pbolbem just by changing the priority?
Ok. Thank you. We tried other currency plugins too, and have the same problem. Could it be globally like the way currency plugins are programmed in general and its just not possible to wok with bundle and your plugin together?
Hello again @thisisirene . I had this whole incompatibility issue with currency plugins a few month back. So basically in the end i used booster for woocommerce and everything seemed to work. I checked back again today and again and having some issues. It seems that the cart and checkout shows the count like it would be euros and not kr.
https://i.imgur.com/8QnireN.png
https://i.imgur.com/WfhQ17T.png
Correct price in crones: https://i.imgur.com/N3wn17a.png
Do you know any fix for this?
Hello, @joni54321!
Could you, please, send us a JSON system report as a new ticket via our helpdesk? Before submitting a report, please, fill in the cart by the same products as on your screenshot.
This worked now ,,Please, try to enable the option Pricing Rules>Settings>Calculation>Use prices modified by get_price hook.,,
There is another problem though. It seems that this fix dosnt work anymore
https://i.imgur.com/PLBldCq.png
@joni54321 do you mean, that the problem with WooCommerce Smart Coupons is returned and there’s a “-$0.00” discount in the cart?
Yes. Although that happens now only for a coupons that a client himself can set a price for.
@joni54321 could you, please, clarify, what version of the WooCommerce Smart Coupons are you using now?
Could you try to use this code instead of the old?
add_filter('wdp_calculate_totals_hook_priority', function () {
return 10;
}, 10, 0);