Skip to content Skip to sidebar

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 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 -
- 12:00 – 16:00 12:00 – 16:00 12:00 – 16:00 12:00 – 16:00 12:00 – 16:00 -

Supporter timezone: Europe/Zagreb (GMT+02:00)

This topic contains 36 replies, has 0 voices.

Last updated by Dražen 21 hours, 47 minutes ago.

Assisted by: Dražen.

Author Posts
September 22, 2025 at 6:16 am #17419928

akakiT

Hi Drazen,

We don’t have any specific pages where the issue occurs, and I don’t think it’s related to individual URLs.

To help reproduce the problem, I’m sharing a stress test Python project. You can run it on your server — please check the README.md file for instructions.

hidden link

⚠️ Just a note: please do not run this against our production server (talkpal.ai). 🙂

Best regards,
Mikheil

September 22, 2025 at 6:27 am #17419941

Dražen
Supporter

Languages: English (English )

Timezone: Europe/Zagreb (GMT+02:00)

Hello Mikheil,

thanks, let me share this with 2nd tier and I will get back to you if there are any further doubts or questions from our side.

Regards,
Drazen

September 23, 2025 at 2:00 pm #17425788

Christopher Amirian
WPML Supporter since 07/2020

Languages: English (English )

Timezone: Asia/Yerevan (GMT+04:00)

Hi Mikheil,

I just wanted to inform you that our 2nd-tier support spent some time on this and we have the points below:

- The tool you provided to us does not allow to index specific post, and it works for the whole website that takes a long time for us and it did not provide the information that could be helpfull.

- 2nd tier found out that by commenting out the code below:

if( QFIP_SLT_licence::verify_wwt_domain() ) {
	define( 'QFIP_APP_API_URL', '<em><u>hidden link</u></em>');
}
else {
	define( 'QFIP_APP_API_URL', '<em><u>hidden link</u></em>');
}

On this plugin file:

/wp-content/plugins/quick-featured-images-pro/quick-featured-images-pro.php

It boosts the performance significantly.

There was another point regarding WPML SEO plugin impact that is reported to the development team.

Making improvements there will take time as the dev team need to work on that and make sure it will be considered as an official release.

Thanks.

September 23, 2025 at 2:16 pm #17425891

Dražen
Supporter

Languages: English (English )

Timezone: Europe/Zagreb (GMT+02:00)

Hello Mikheil,

As my colleague has already informed you, these are our findings.

In addition to the issues mentioned earlier, we also noticed some performance impact. Specifically, when using Yoast SEO together with WPML SEO, there is an additional performance overhead of about 11%.

This was discovered using your tool that scans and processes the sitemap generated by Yoast SEO. In particular, the overhead comes from the function:
\WPML\WPSEO\Shared\Sitemap\BaseAlternateLangHooks::addAlternateLangData

This function adds approximately 11% overhead when accessing the sitemap at:
/post-sitemap.xml

Those are all related things that we have found. You can check and confirm if that both helps your side, by disabling Yoast SEO, WPML SEO, and your SEO addon plugin / quick-featured-images-pro.

I will update you when there is some news from our side, but as mentioned this may take a while.

Regards,
Drazen

September 24, 2025 at 7:21 am #17427603

Dražen
Supporter

Languages: English (English )

Timezone: Europe/Zagreb (GMT+02:00)

Hello,

sharing some more updates from our side:

Try limiting the posts that are queried per sitemap chunk.

This can be limited by:

/* Limit the number of sitemap entries for Yoast SEO */
function max_entries_per_sitemap() {
    return 100;
}

add_filter( 'wpseo_sitemap_entries_per_page', 'max_entries_per_sitemap' );

as per their documentation: hidden link

This will create MORE sitemaps, but the queries that are going to be done will be less expensive per sitemap chunk and in fact less CPU usage.

If you prefer optimizing the sitemap instead, you can disable the feature by adding define( 'WPML_SEO_ENABLE_SITEMAP_HREFLANG', false ); in the wp-config.php file.

In parallel, re-activate the HREFLANG in the HEAD.

https://wpml.org/documentation/plugins-compatibility/using-wordpress-seo-with-wpml/#:~:text=each%20language).-,Using%20Hreflang%20Tags,-By%20default%2C%20WPML

let me know how it goes.

Regards,
Drazen

September 25, 2025 at 5:33 am #17430538

akakiT

Can you please provide us an older version of WPML? Like 4.6 (Not 4.7 or 4.8) so we can test it? Thx!

September 25, 2025 at 5:43 am #17430552

Dražen
Supporter

Languages: English (English )

Timezone: Europe/Zagreb (GMT+02:00)

Hello,

1) I would advise installing older version of WPML, but you can find it under downloads under changelog:

- https://wpml.org/download/wpml-multilingual-cms/?section=changelog
- https://wpml.org/download/wpml-string-translation/?section=changelog

2) Were you able to try and check our suggestion shared? Did that help?

Please let us know.

Regards,
Drazen