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 Currency Switcher [available solution does not work]

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.

Hello

https://currency-switcher.com/woocommerce-composite-products/ - solution mentioned here is not working (anymore?). Plus the code mentioned is already in the vanilla WooCommerce Currency Switcher files.

 

The issue is, after changing currency, prices for composite products are wrong: total price = composite product price + prices of individual products bundled in composite product.

Eg. composite product X price = 100€, and that products consist of 4 individual products A, B, C, Dpriced 30€ each.

After switching to lets say SEK (1:10€), the price is not 1000SEK, but 1000 for X +300 for A +300 for B +300 for C +300 for D = 2200SEK total

 

Thank you in advance for the support.

Hello

Ok!

Please paste  your  FTP+wp-admin access - https://c2n.me/43SC6rb.png -> https://c2n.me/42BAoj4.png

I will add this plugin to the adaptation queue

All the information was given as private data

Hello

Ok! I added this plugin to the adaptation queue

Hello

I added  code  in  functions.php

add_filter('woocs_fixed_raw_woocommerce_price', function( $tmp_val, $product, $price){
if($price==0){
return $price;
}
return $tmp_val;
},999,3);

 

Please  do test!