WPIntell

Source evidence

Update wp 6.7

Custom Login Page Customizer · support · 2024-11-14T15:18:00+00:00

mixedsentiment
highseverity
0.88relevance
6replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

6 / 34 rows with source links

17.6% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

28 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
vvedebariton resolved
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] 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. 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 @all We have sent the release v2.5.0 for this fix.

Comments

6 shown
Emma 2024-11-18T12:53:00+00:00

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.

slewisma 2024-11-25T17:06:00+00:00

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?

vemarketing 2024-11-25T17:43:00+00:00

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.

Emma 2024-11-27T12:56:00+00:00

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!

zaidibinhusin 2025-01-01T08:55:00+00:00

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

Emma 2025-01-03T12:47:00+00:00

@all We have sent the release v2.5.0 for this fix.