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.