Title: Errors constantly &#8211; load on init
Last modified: March 21, 2026

---

# Errors constantly – load on init

 *  [hebhansen](https://wordpress.org/support/users/hebhansen/)
 * (@hebhansen)
 * [2 weeks ago](https://wordpress.org/support/topic/errors-constantly-load-on-init/)
 * I get debug errors all the time and warnigs i wordfence and health check. When
   are these fixed?
 *     ```wp-block-code
       [21-Mar-2026 14:10:45 UTC] PHP Notice:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>complianz-terms-conditions</code> 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 <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /wp-includes/functions.php on line 6131[21-Mar-2026 14:10:45 UTC] PHP Notice:  Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>complianz-gdpr</code> 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 <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /wp-includes/functions.php on line 6131
       ```
   
 * PHP 8.3
   TT5 latestWordPress Latest
 * Thx

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [hebhansen](https://wordpress.org/support/users/hebhansen/)
 * (@hebhansen)
 * [2 weeks ago](https://wordpress.org/support/topic/errors-constantly-load-on-init/#post-18858504)
 * Fix:
 *     ```wp-block-code
       class Cmplz_TC_Config {    protected $label = __('Label Text', 'complianz-terms-conditions'); // ❌ early}
       ```
   
 * should change to:
 *     ```wp-block-code
       class Cmplz_TC_Config {    protected $label;    public function __construct() {        add_action('init', function() {            $this->label = __('Label Text', 'complianz-terms-conditions'); // ✅ at init or later        });    }} 
       ```
   
 *  [Antonio Candela](https://wordpress.org/support/users/antoiub/)
 * (@antoiub)
 * [2 days, 1 hour ago](https://wordpress.org/support/topic/errors-constantly-load-on-init/#post-18870411)
 * Hi [@hebhansen](https://wordpress.org/support/users/hebhansen/) ,
 * With the latest update 1.3.0 we have updated our codebase to match the latest
   WordPress requirements, including a fix for this issue.
 * I hope this helps!

Viewing 2 replies - 1 through 2 (of 2 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ferrors-constantly-load-on-init%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/complianz-terms-conditions/assets/icon-256x256.png?rev=2900489)
 * [Complianz - Terms and Conditions](https://wordpress.org/plugins/complianz-terms-conditions/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/complianz-terms-conditions/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/complianz-terms-conditions/)
 * [Active Topics](https://wordpress.org/support/plugin/complianz-terms-conditions/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/complianz-terms-conditions/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/complianz-terms-conditions/reviews/)

## Tags

 * [init](https://wordpress.org/support/topic-tag/init/)
 * [load time](https://wordpress.org/support/topic-tag/load-time/)

 * 2 replies
 * 2 participants
 * Last reply from: [Antonio Candela](https://wordpress.org/support/users/antoiub/)
 * Last activity: [2 days, 1 hour ago](https://wordpress.org/support/topic/errors-constantly-load-on-init/#post-18870411)
 * Status: not resolved