• function _load_textdomain_just_in_time was called incorrectly. Loading translations for the login-customizer domain was started too early. This is usually an indicator of code in the plugin or theme that is executing too early. Translations should be loaded on the init action or later. See Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vhosts/vve-debariton.nl/WebPage/wp-includes/functions.php on line 6114

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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!

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.