Hi, I had the same issue and asked that to ChatGPT. He (or she) gave me a solution and it worked for me.
I got an error message telling line 118 of the file “wp-content/plugins/pro-categories-widget/pro-categories-widget.php” caused this error. This is line 118 “add_action( ‘widgets_init’, create_function( ”, ‘register_widget( “Pro_Categories_Widget” );’ ) );”
ChatGPT taught me that “create_function” is no more supported in PHP8. So below cord using anonymous function was suggested by him. Please replace line 118 with this.
add_action( ‘widgets_init’, function () { register_widget(‘Pro_Categories_Widget’); } );