• PHP Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the simple-custom-post-order 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 /wp-includes/functions.php on line 6114

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

    (@darkstar123456)

    Hello,

    Quick fix for that, open file wp-content/plugins/simple-custom-post-order/simple-custom-post-order.php

    Replace line 50 : $this->load_dependencies();
    With : add_action( 'init', array( $this, 'load_dependencies' ) );

    Replace line 83 : private function load_dependencies() {
    With : public function load_dependencies() {

    EDIT : I have created a pull request to help the authors fix it as fast as possible : https://github.com/ColorlibHQ/simple-custom-post-order/pull/142

    • This reply was modified 1 week, 1 day ago by darkstar123456. Reason: Added link of pull request
    Thread Starter kubiq

    (@kubiq)

    Yes, I also know how to fix this, but this will cause even worse problems, because WordFence will send emails about critical security issue then ??

    So author of this plugin has to fix it officially in the plugin.

    But thanks anyway ??

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