Skip Navigation

This thread is resolved. Here is a description of the problem and solution.

Problem:
The client is experiencing an issue where product variations are not displayed correctly in Danish, although they work fine in the original language, Swedish, and in English.

Solution:
We have identified that the problem is related to the client's custom plugin - Matting Webshop. To resolve this issue, we recommend modifying the AJAX variation threshold in the plugin's code. Here are the steps to follow:

  • Access the file
    matting-webshop/includes/filters.php

    .

  • Locate the function
    matting_wc_ajax_variation_threshold

    around line 165.

  • Change the return value from
    1

    to

    3

    , so the function should now look like this:

    function matting_wc_ajax_variation_threshold( $qty, $product ) {<br />    return 3;<br />}

Please confirm if this solution resolves the issue with the product variations. If this solution does not seem relevant to your situation, or if you need further assistance, please open a new support ticket with us.

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 8 replies, has 2 voices.

Last updated by Kor 1 year, 2 months ago.

Assisted by: Kor.

Author Posts
January 8, 2024 at 9:59 am #15159367

petterH

Tell us what you are trying to do?
On one product, the variations are not shown correctly in Danish. The original lanuage Swedish and English are fine.

Is there any documentation that you are following?
I found a guide and used the tools to sync variable products and it actually sorted another issue with missing product images out, but did not help with this particular product. There seems to be some kind of conflict here. I tried to copy the product, but had the same result.

Is there a similar example that we can see?

What is the link to your site?
Original product: hidden link
Danish product: hidden link

Skärmbild 2024-01-08 104947.png
Skärmbild 2024-01-08 104930.png
January 8, 2024 at 1:57 pm #15160743

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

Hi there,

Thanks for contacting WPML support.

I will need to closely examine your website. Therefore, I will require temporary access (WP-Admin and FTP) to a test site where the problem has been replicated, if possible. This will enable me to provide better assistance and determine if any configurations need to be modified.

Please note that it is important to have a backup for security purposes and to prevent any potential data loss. You can use the UpdraftPlus plugin (https://wordpress.org/plugins/updraftplus/) to fulfill your backup requirements.

Your upcoming reply will be treated with confidentiality and will only be visible to you and me.

✙ To resolve the issue, I may need your consent to deactivate and reactivate plugins and the theme, as well as make configuration changes on the site if necessary. This emphasizes the significance of having a backup.

Upon reviewing your debug information, I have observed that the PHP limit for your "WP Memory Limit" is lower than the recommended 256MB or the required 128MB, as mentioned in the documentation found at: https://wpml.org/home/minimum-requirements/. To resolve this, I kindly request that you contact your hosting provider and request an increase in the PHP value for you.

January 11, 2024 at 2:51 pm #15175253

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

Thanks for your reply.

I can see the issue now and it seems to only affect this particular product. Could be some database related issue and I will need to investigate this further.

I would like to request a site snapshot. Alternatively, with your permission, we can create a snapshot on our own.

For this purpose, we typically recommend using the free plugin "Duplicator." If you are already familiar with how Duplicator works ( https://wordpress.org/plugins/duplicator/), please skip the following steps and simply send me the archive file you downloaded.

To assist you further, please follow these instructions:
Watch the Duplicator instructions video: hidden link

Refer to the instructions provided by WPML on how to provide supporters a copy of your site: https://wpml.org/faq/provide-supporters-copy-site/

If the archive file exceeds 400MB in size, please utilize Duplicator's file filters to exclude the cache, wp-uploads directory, media, and archive files.

Once you have the archive file, please share the link with us. You can use services such as Google Drive, Dropbox, or similar platforms as the snapshot file will likely be large.

Please note that your next reply will be private, visible only to you and me. You can paste the link to the file there. Rest assured that once the issue is resolved, I will delete the local site.

January 15, 2024 at 7:17 pm #15186746

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

Thank you for your response.

I have a copy of the site, and I will conduct a more detailed investigation on my local development environment. I will provide you with an update as soon as possible.

January 16, 2024 at 2:43 pm #15190723

petterH

Good, looking forward to it 👍

January 17, 2024 at 9:10 pm #15197186

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

I appreciate your understanding. Regrettably, I require additional time to conduct a thorough investigation. Rest assured, I will get back to you promptly.

January 19, 2024 at 7:12 pm #15206172

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

Thanks for your patience.

I will have to escalate this further to our 2nd Tier Support for further assistance. I will come back to you once I've feedback.

January 30, 2024 at 2:30 pm #15244370

petterH

Hi,
I was wondering how this is going. Any feedback yet?

January 30, 2024 at 2:46 pm #15244649

Kor
Supporter

Languages: English (English )

Timezone: Asia/Singapore (GMT+08:00)

Thanks for your reply.

I have feedback and I've applied the workaround to fix this. It should work now and could you please confirm?

The issue appears to be in the user's plugin - Matting Webshop

To fix this, go to matting-webshop/includes/filters.php and on line 165, I replaced

function matting_wc_ajax_variation_threshold( $qty, $product ) {
    return 1;
  }

with

function matting_wc_ajax_variation_threshold( $qty, $product ) {
    return 3;
  }
January 30, 2024 at 3:03 pm #15244812

petterH

Great, yes it seems to be working fine! Good work!

This custom plugin (built before I came into the project) did cause some other issues earlier, but I did not suspect it here...