This thread is resolved. Here is a description of the problem and solution.
Problem:
The client wanted to display a message on the WooCommerce checkout page using 'Flux Checkout for WooCommerce' from Iconic. Although the message was created in German (DE) and translated into Greek (GR) and English (EN), it only displayed in German on the frontend.
Solution:
We recommended the following steps to ensure the translated messages display correctly:
1- Navigate to
.../wp-content/plugins/flux-checkout/inc/class-checkout-elements.php
2- Locate line 418.
3- Modify the code from:
$args = array(
'post_type' => self::$post_type_key,
'posts_per_page' => 100,
'post_status' => 'publish',
);to:
$args = array(
'post_type' => self::$post_type_key,
'posts_per_page' => 100,
'post_status' => 'publish',
'suppress_filters' => false,
);4- Verify the changes on the frontend checkout page.
If this solution does not resolve your issue, or if it seems outdated or irrelevant to your case, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If further assistance is needed, please open a new support ticket at WPML support forum.
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.
This topic contains 0 reply, has 0 voices.
Last updated by 1 year, 4 months ago.
Assisted by: Osama Mersal.

