• Resolved alexnguyenvn

    (@alexnguyenvn)


    Critical error when accessing WP Admin Dashboard with the following error bug reported (after updating Woocommerce to 6.2). Please help.

    Có l?i E_ERROR t?i dòng 173 trong file: /home/lilyvalley/public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php. Th?ng báo l?i: Uncaught Error: Call to a member function is_complete() on null in /home/lilyvalley/public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php:173
    Stack trace:
    #0 /home/lilyvalley/public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php(44): WC_Admin_Dashboard_Setup->should_display_widget()
    #1 /home/lilyvalley/public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php(181): WC_Admin_Dashboard_Setup->__construct()
    #2 /home/lilyvalley/public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php(102): include('/home/lilyvalle...')
    #3 /home/lilyvalley/public_html/wp-includes/class-wp-hook.php(307): WC_Admin->conditional_includes(Object(WP_Screen))
    #4 /home/lilyvalley/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(NULL, Array)
    #5 /home/lilyvalley/public_html/wp-includes/plugin.php(474): WP_Hook->do_action(Array)
    #6 /home/lilyvalley/public_html/wp-admin/includes/class-wp-sc
Viewing 12 replies - 1 through 12 (of 12 total)
  • While they look for the perfect answer, you can do the following:

    1. Open woocommerce/includes/admin/class-wc-admin-dashboard-setup.php, scroll to the bottom, find the function “should_display_widget”.

    2. Change it to:

    public function should_display_widget() {
    	return false;
    }

    This was a more proper temporary code fix for me:

    public function should_display_widget() {
    	return current_user_can( 'manage_woocommerce' ) &&
    		WC()->is_wc_admin_active() &&
    		( ! is_null($this->get_task_list()) && ! $this->get_task_list()->is_complete()) && // ! $this->get_task_list()->is_complete() &&
    		! $this->get_task_list()->is_hidden();
    }
    • This reply was modified 2 years, 9 months ago by Jomar4444.
    SSDEV

    (@smartsitesnj)

    Similar issue with WC:

    PHP Fatal error: Uncaught Error: Call to a member function is_complete() on null in /public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php:173
    Stack trace:
    #0 /public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php(44): WC_Admin_Dashboard_Setup->should_display_widget()
    #1 /public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php(181): WC_Admin_Dashboard_Setup->__construct()
    #2 /public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php(102): include(‘/home/alternate…’)
    #3 /public_html/wp-includes/class-wp-hook.php(307): WC_Admin->conditional_includes(Object(WP_Screen))
    #4 /public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters(NULL, Array)
    #5 /public_html/wp-includes/plugin.php(474): WP_Hook->do_action(Array)
    #6 /public_html/wp-admin/includes/cla in /public_html/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php on line 173

    Getting critical error notices all morning. Seems to be in WC 6.2 so I rolled back to 6.1.1 and the errors stopped.

    Uncaught exception 'Error' with message 'Call to a member function is_complete() on null' in /nas/content/live/sevencolonial/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard-setup.php:173

    For me, disabling https://www.ads-software.com/plugins/disable-dashboard-for-woocommerce/ stopped the error, though I have that enabled for good reason as without it Woo would go nuts querying the 100+ sites on the network for the latest orders.

    Dear @ablears @forthinc @smartsitesnj @jomar4444 @mister_r

    The problem has been fixed.
    Please update Disable WooCommerce Bloat plugin to its latest version (2.6.2).

    Great. Thanks @ospiotr, this works with Woo 6.2.

    I implemented MisterR’s suggestion and it worked but if I update the latest version of Disable WooCommerce Bloat will that cause an issue again? Will I need to change that code back to what it was or will it just work after I update because I couldn’t access the backend when this issue first happened.

    Dear @martin89

    Please follow these steps:

    1. Deactivate Disable WooCommerce Bloat
    2. Replace woocommerce/includes/admin/class-wc-admin-dashboard-setup.php file with original
    3. Update Disable WooCommerce Bloat to the latest version
    4. Activate Disable WooCommerce Bloat

    Dear @ospiotr

    Thank you so much, you’re a gem ??

    Hi @alexnguyenvn!

    To know more about setup and to further check into this, kindly provide us your System Status; you can find it via WooCommerce > Status. Select ‘Get system report’ and then ‘Copy for support’. Once you do this, paste in here your response.

    Thanks!

    Hi there,

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – we’ll be here if and/or when you are ready to continue.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Critical error with Woocommerce 6.2’ is closed to new replies.