This thread is resolved. Here is a description of the problem and solution.
Problem:
You are experiencing issues with WooCommerce Multilingual & Multicurrency due to an active cache plugin on your site, which may cause currency display issues. You need to create a cookie exception in your Nginx server configuration to prevent caching for visitors with a specific cookie.
Solution:
We recommend contacting the support team for your cache plugin or your hosting provider for assistance with adjusting your Nginx configuration. Here is a basic example of what the configuration might look like:
nginx server { listen 80; server_name yoursite.com; location / { if ($http_cookie ~* "cookie_name_here") { set $skip_cache 1; } # Your existing caching settings } }
Please replace "cookie_name_here" with the actual name of the cookie. This is just a general guide, and your specific setup may require different settings.
If this solution does not apply to your case, or if it seems outdated, 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 1 reply, has 2 voices.
Last updated by 7 months, 3 weeks ago.
Assisted by: Shekhar Bhandari.