Title: Edson Galina Fortes's Replies | WordPress.org

---

# Edson Galina Fortes

  [  ](https://wordpress.org/support/users/glx77/)

 *   [Profile](https://wordpress.org/support/users/glx77/)
 *   [Topics Started](https://wordpress.org/support/users/glx77/topics/)
 *   [Replies Created](https://wordpress.org/support/users/glx77/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/glx77/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/glx77/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/glx77/engagements/)
 *   [Favorites](https://wordpress.org/support/users/glx77/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 506 total)

1 [2](https://wordpress.org/support/users/glx77/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/glx77/replies/page/3/?output_format=md) …
[32](https://wordpress.org/support/users/glx77/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/glx77/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/glx77/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/glx77/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] psr/Cache modernization update](https://wordpress.org/support/topic/psr-cache-modernization-update/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [1 week ago](https://wordpress.org/support/topic/psr-cache-modernization-update/#post-18926413)
 * Hi [@skagia](https://wordpress.org/support/users/skagia/) ,
   hope you’re fine ?
   do you still facing your issue ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] psr/Cache modernization update](https://wordpress.org/support/topic/psr-cache-modernization-update/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [1 week, 5 days ago](https://wordpress.org/support/topic/psr-cache-modernization-update/#post-18921810)
 * Hi,
 * Thanks for the detailed report — really appreciate you taking the time to trace
   it down.
 * To give you some context on the library version: Weglot still targets PHP 7.4
   as its minimum requirement, and psr/cache 2.0+ dropped PHP 7 support
   entirely.
   Jumping to a newer version would break compatibility for a significant portion
   of our users, so we’re intentionally staying on 1.0 for now.
 * As a short-term workaround while we investigate, we have a filter called weglot/
   skip_contexts that lets you tell Weglot to skip its initialisation in
   specific
   admin screens or pages. If the fatal happens on a predictable screen, that can
   at least keep the plugins screen stable:
 * add_filter( ‘weglot/skip_contexts’, function( $contexts ) {
   $contexts[‘screens’][]
   = ‘plugins’; // example: WP admin plugins screenreturn $contexts;} );
 * That said, to properly reproduce and test a fix on our end, could you share:
    - The name of the conflicting plugin (and ideally its version)?
    - The exact screen or action that triggers the fatal (plugins page, a specific
      admin page, frontend, etc.)?
    - The full error trace if you have it? With that we can set up the same environment
      locally and look at the best path forward. 
      Thanks again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] non-German Elementor forms do not work](https://wordpress.org/support/topic/non-german-elementor-forms-do-not-work/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [1 month, 3 weeks ago](https://wordpress.org/support/topic/non-german-elementor-forms-do-not-work/#post-18883100)
 * Hi [@webmark487](https://wordpress.org/support/users/webmark487/) ,
   thanks for
   the feedback and the solution. There may be a more precise approach. While excluding`
   wp-admin/admin-ajax.php` works in your case, it applies globally and prevents
   all AJAX requests from being translated.
 * A better solution is to selectively exclude specific AJAX actions using the `
   weglot_ajax_no_translate` filter. For example:
 * `add_filter('weglot_ajax_no_translate', function($actions) { $actions[] = 'my_custom_ajax_action';
   $actions[] = 'another_action_to_exclude'; return $actions; });`
 * This allows you to prevent translation only for targeted AJAX actions instead
   of disabling it entirely.
 * To identify the relevant action name, inspect the AJAX request payload in your
   browser’s developer tools (Network tab). Look for the `action` parameter sent
   with the request.
 * Regards
    -  This reply was modified 1 month, 3 weeks ago by [Edson Galina Fortes](https://wordpress.org/support/users/glx77/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Translations not applied to widgets](https://wordpress.org/support/topic/translations-not-applied-to-widgets/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [1 month, 3 weeks ago](https://wordpress.org/support/topic/translations-not-applied-to-widgets/#post-18880021)
 * hi [@yusefclass](https://wordpress.org/support/users/yusefclass/) do you still
   facing your issue ? may i can help you ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Translations not applied to widgets](https://wordpress.org/support/topic/translations-not-applied-to-widgets/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [2 months ago](https://wordpress.org/support/topic/translations-not-applied-to-widgets/#post-18875788)
 * Hi [@yusefclass](https://wordpress.org/support/users/yusefclass/) ,
 * Thanks for your message! To better understand what’s going on, could you please
   share a URL where we can see the issue?
 * In this kind of situation, there are a few possible causes:
    - It might be a parsing issue where the widget content isn’t detected correctly,
      in which case we may need to add a specific filter.
    - It could be related to asynchronous content that isn’t translated by default.
    - Or the element might be excluded from translation.
 * If you prefer, you can also reach out to us at [support@weglot.com](https://wordpress.org/support/users/glx77/replies/support@weglot.com?output_format=md)
   and mention this thread. That will make it easier to exchange URLs and investigate
   further.
 * In any case, we’ll make sure to update this thread with any findings.
   Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] PHP Fatal error: Uncaught Error: Class “WeglotLanguages\Languages” not found](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [2 months, 1 week ago](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/#post-18868814)
 * Hi [@oluwatemilorun](https://wordpress.org/support/users/oluwatemilorun/) ,
 * Thanks again for your reply – we’re always happy to help!
 * If you’re happy with the support you received, would you mind leaving a quick
   review on WordPress?
 * 👉 [https://wordpress.org/support/plugin/weglot/reviews/](https://wordpress.org/support/plugin/weglot/reviews/)
 * We’d really appreciate it – your support means a lot to us and helps others discover
   Weglot too. 😊
 * Thanks a lot in advance, and have a great day!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] PHP Fatal error: Uncaught Error: Class “WeglotLanguages\Languages” not found](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [2 months, 1 week ago](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/#post-18866502)
 * Hi [@oluwatemilorun](https://wordpress.org/support/users/oluwatemilorun/) ,
   hope
   you’re fine? Do you still facing your issue ? don’t hesitate if you need more
   helpregards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] PHP Fatal error: Uncaught Error: Class “WeglotLanguages\Languages” not found](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/php-fatal-error-uncaught-error-class-weglotlanguageslanguages-not-found/#post-18864409)
 * Hi [@oluwatemilorun](https://wordpress.org/support/users/oluwatemilorun/) ,
   hope
   you’re fine? Sorry for the issue you’re facing.
 * The fatal error comes from a missing class `WeglotLanguages\Languages`, which
   is expected to be autoloaded from:
   `vendor/weglot/weglot-php/node_modules/@weglot/
   languages/dist/Languages.php`
 * This file is part of the Weglot PHP SDK dependency tree. Since it resides inside
   a `node_modules` directory, it is often excluded during deployments or migrations(
   e.g. via `.gitignore`, rsync filters, or CI pipelines).
 * As a result, the Composer autoloader cannot resolve the class, leading to the
   fatal error.
 * Please verify that the file exists at the expected path. If it is missing, the
   recommended fix is to reinstall the plugin from the official source:
   [https://downloads.wordpress.org/plugin/weglot.5.4.zip](https://downloads.wordpress.org/plugin/weglot.5.4.zip)
 * This will restore the full vendor tree, including the embedded `node_modules`.
 * For clarity: Weglot is fully compatible with PHP 8.3, so this issue is not related
   to PHP versioning but strictly to missing files.
   don’t hesitate if you need more
   helpRegards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18841513)
 * no worries, take your tme, you can add the version including staticCache here:
   [https://we.tl/t-BKvgakKjdb](https://we.tl/t-BKvgakKjdb)
   Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18841475)
 * Hi [@comotive](https://wordpress.org/support/users/comotive/) ,
   are you able 
   to test the version i provide ? Tell me if you need me to resend it.Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months, 1 week ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18836121)
 * I can’t edit my previous message, please test this version : [https://we.tl/t-7palGPJrMJ](https://we.tl/t-7palGPJrMJ)
   
   Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months, 1 week ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18835946)
 * Hi [@comotive](https://wordpress.org/support/users/comotive/) ,
   are you able 
   to test this version of the plugin : [https://we.tl/t-7FAugGBLPH](https://we.tl/t-7FAugGBLPH)
   i’ve just make a POC adding devicedetectorcaching feature.Let me know if it’s
   betterRegards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months, 1 week ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18835630)
 * Thanks for the feedback 😉
   Indeed, we had a manual user agent list and we switched
   to a library to have an up-to-date and maintained list, and I haven’t measured
   the impact. I’ll open the issue on my end to add caching or see if a lighter 
   library is available. It will probably be released in 5.5 and not 5.4.Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months, 2 weeks ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18832023)
 * thank for the reply, keep me in touch if you need some help, i’ll keep the thread
   open for the moment.
   Regards 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Translate WordPress with Weglot - Multilingual AI Translation] Increase in latency / load time](https://wordpress.org/support/topic/increase-in-latency-load-time/)
 *  Plugin Contributor [Edson Galina Fortes](https://wordpress.org/support/users/glx77/)
 * (@glx77)
 * [3 months, 2 weeks ago](https://wordpress.org/support/topic/increase-in-latency-load-time/#post-18831921)
 * Hi [@comotive](https://wordpress.org/support/users/comotive/) ,
   hope you’re fine.
   Sorry for the issue you’re facing and thanks for the feedbacks it’s help. We 
   planned a release of the 5.4 next week, but you can test the beta version here
   and tell me if you still see your massive increase : [https://we.tl/t-DpGgB8gMRg](https://we.tl/t-DpGgB8gMRg)?
   On my side i’ll compare the 2 versions (5.2/5.3) code change on the repo to check
   what update can explain the increase your facesregards

Viewing 15 replies - 1 through 15 (of 506 total)

1 [2](https://wordpress.org/support/users/glx77/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/glx77/replies/page/3/?output_format=md) …
[32](https://wordpress.org/support/users/glx77/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/glx77/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/glx77/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/glx77/replies/page/2/?output_format=md)