Problema: El cliente experimenta lentitud en su sitio web al activar WPML, especialmente después de una migración de la web. Solución: Si estás experimentando lentitud en tu sitio web tras activar WPML, te recomendamos seguir la discusión y las soluciones propuestas en el ticket anterior, que parece estar relacionado con tu caso. Puedes encontrarlo aquí: https://wpml.org/es/forums/topic/nos-da-problemas-en-una-web/.
Si la solución propuesta en el ticket anterior no resuelve tu problema o si la información parece desactualizada, te recomendamos abrir un nuevo ticket de soporte. Además, te sugerimos revisar los problemas conocidos en https://wpml.org/known-issues/, verificar la versión de la solución permanente y confirmar que tienes instaladas las últimas versiones de los temas y plugins.
Problem: If you're experiencing slow site performance when the Advanced Custom Fields Multilingual plugin is activated, it might be due to the high number of ACF field calls. In a case we investigated, activating WPML increased the load time significantly because it hooked into each ACF field call for translation, executing over 8000 times. Solution: To address this, we recommend two strategies: 1. Reduce the number of ACF field calls by modifying the theme to minimize usage of
acf_get_field
, especially for fields that don't require translation. Replace these with direct
get_post_meta
calls to bypass both WPML and ACF retrieval logic. 2. Use a filter introduced in ACFML 2.1.4 to bypass translation logic. Add the following code to your theme's
This code ensures that only fields marked for translation are processed, significantly improving performance.
If these solutions do not resolve your issue or seem 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 the problem persists, please open a new support ticket.
Problem: You are experiencing slower PageSpeed scores on the Polish version of your site compared to the English version, despite using the Litespeed Cache Plugin and both versions being identical except for the language. Solution: The discrepancy in speed between the English and Polish versions of your site is likely due to the additional processing required by WPML for translated pages. WPML needs to handle and filter translation layers, which involves accessing, processing, and displaying content based on the selected language. This necessary process introduces a slight overhead, which might affect the load times and PageSpeed scores of the translated pages.
If this solution does not resolve your issue, or if it seems outdated or irrelevant to your case, we recommend opening a new support ticket. Additionally, 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. For further assistance, please visit our support forum at WPML Support Forum.
Problem: When installing WPML String Translation on a WordPress multisite, the site experiences significant performance issues, using excessive RAM and CPU, leading to MySQL crashes. Additionally, the beta version dropdown is missing in the 'Commercial' section of the plugins page. Solution: First, ensure you are using the latest version of WPML String Translation by checking the changelog at WPML String Translation Changelog. If you encounter crashes, enable debugging on your site to identify specific issues. Modify your wp-config.php file:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
This will save error logs to a debug.log file within the /wp-content/ directory. For detailed instructions on enabling debugging, visit Debugging WPML. Since the beta version is not currently available in the 'Commercial' section due to it not being publicly released yet, keep an eye on WPML Changelog and WPML Announcements for updates on new releases.
If these steps do not resolve your issue or the solution seems outdated, we recommend opening a new support ticket. We also highly suggest checking related known issues at WPML Known Issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. For further assistance, please contact us through the WPML Support Forum.