Skip Navigation

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 8:00 – 10:00 8:00 – 10:00 8:00 – 13:00 8:00 – 13:00 9:00 – 13:00 -
- 11:00 – 17:00 11:00 – 17:00 14:00 – 17:00 13:00 – 17:00 13:00 – 18:00 -

Supporter timezone: America/New_York (GMT-04:00)

Tagged: 

This topic contains 0 replies, has 0 voices.

Last updated by timC-34 1 week, 2 days ago.

Assisted by: Lauren.

Author Posts
March 31, 2025 at 5:18 am #16877362

timC-34

Hi Lauren,

I'm sorry to bother you again.
But I really need a solution as soon as possible. It already takes more than a month.
And it is a real problem for our shop.

Could you please check again with the 2nd tier support.

Kind regards,
Anja

April 1, 2025 at 3:31 pm #16883730

Lauren
Supporter

Languages: English (English )

Timezone: America/New_York (GMT-04:00)

I don't have an estimated time for when a solution will be available. There were some similar issues that were resolved with the following workaround. Please test this on your site and let's see if it fixes your issue as well. Be sure to have a full backup before proceeding.

- In your current theme's functions.php file.
- Add the following code at end of the file:

add_filter( 'wc_get_price_decimal_separator', 'wssupp_fix_decimal', 10, 9999 );
function wssupp_fix_decimal($separator) {
    if ( isset($_POST['action']) && $_POST['action'] == 'woocommerce_calc_line_taxes' ) {
 
        return ",";
    }
    return $separator;
}

- Save the file and reload the frontend of your site and then let me know if anything regarding the issue changes.

April 3, 2025 at 6:06 am #16889777

timC-34

Hi Lauren,

I tried it, but the problem stays the same.