Plugin Support
Emma
(@emma24)
Hi @vvedebariton,
Thank you for reporting this issue and sharing the details. We’re currently working on replicating the problem on our end to better understand its cause. Once we’ve successfully replicated it, we’ll proceed with identifying a solution to address it.
We appreciate your patience and will keep you updated on our progress.
Same issue here on a new site I’m trying to launch today. Causes a critical error in certain places including customizer. Any progress on a fix?
Seems like the update on 6.7.1 caused this error on many plugins, as it doesn’t like the use of the action ‘plugins_loaded’ for ‘load_text_domain’ functions.
In your plugin under login-customizer/src/Essentials.php on LINE 38 is the part causing the error. If you manually update the plugin from:
add_action( ‘plugins_loaded’, array($this, ‘load_text_domain’ ) );
to this:
add_action( ‘init’, array($this, ‘load_text_domain’ ) );
After this update the error goes away. So you likely need to update that line in a future update release. For those experiencing the issue, this update fixes it immediately.
Plugin Support
Emma
(@emma24)
Hi everyone,
The issue is replicated on our end, too, now. As @vemarketing mentioned, it is exactly because of this reason. For now, you may use the solution suggested by @vemarketing.
Our team is working on a solution for this fix, and we will release it in the next update as soon as we can. Thanks for your patience!
Hi @emma24 , any update on the fixes release? Im also facing the same issue when try to update the WordPress from version 6.6.2 to 6.7.1. Below is the message for your reference.
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the login-customizer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/cikgutay/public_html/wp-includes/functions.php on line 6114
Plugin Support
Emma
(@emma24)
@all
We have sent the release v2.5.0 for this fix.