• Resolved majlo345

    (@majlo345)


    Hi.

    After update the following issue occured.

    Warning: Increment on type bool has no effect, this will change in the next major version of PHP in /www/p/h/u15854/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php on line 741
    data-elementor-type=”wp-post” data-elementor-id=”40″ class=”elementor elementor-40″>

    I tried to disable the features in settings /caching etc./, also disable the plugins and eneble them step by step to find conflict betwen as well as switch to default theme – twenty four. The issue is still shown.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support vipul78

    (@vipulelementor)

    Hi @majlo345

    This is just a warning this won’t cause problems to the functions of the site. It is showing up on the frontend which is the only problem as I can see and this happens because the WP_DEBUG_DISPLAY mode needs to be disabled.

    Please go to your wp-config.php file and then add see if you find WP_DEBUG anywhere in the code. If it is already present then remove it and add this one.

    define( ‘WP_DEBUG’, false );
    define( ‘WP_DEBUG_LOG’, false );
    define( ‘WP_DEBUG_DISPLAY’, false );

    If this does not work then please use this

    define( ‘WP_DEBUG’, true );
    define( ‘WP_DEBUG_LOG’, false );
    define( ‘WP_DEBUG_DISPLAY’, false );

    This should resolve the problem and the error won’t show up.

    Here is the docs for this – https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/

    @vipulelementor

    It should be fixed nonetheless, because first, it also logs in the PHP-FPM log (regardless of WP_DEBUG), and second, as the message states, it will become an issue in the next major version of PHP.

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

You must be logged in to reply to this topic.