Skip to main content

Message in log

Comments

1 comment

  • Ariel H.

    Hi Emelie,

    Thank you for reaching out to us.

    It appears that the debug mode is enabled on your website, which is why these error messages are being displayed.  To hide these messages, open the file wp-config.php on your site root (using File Manager or an FTP tool). Locate these 2 lines of code in the file. Save the file after changing the word "true" to "false."   

    if ( ! defined( 'WP_DEBUG' ) ) {
        define( 'WP_DEBUG', true );
    }  


    Once you make the change, your code should look like this

    if ( ! defined( 'WP_DEBUG' ) ) {
        define( 'WP_DEBUG', false );
    }

    Please try this and let me know how it goes.

    Best regards,
    Ariel H.

    0

Please sign in to leave a comment.