Exception #0 (Exception): Warning: count(): Parameter must be an array or an object that implements Countable in /***/html/app/code/Sebwite/Sidebar/Block/Sidebar.php on line 168
Fix:
Change line 168 of /***/html/app/code/Sebwite/Sidebar/Block/Sidebar.php to
if (is_object($childCategories) && count($childCategories) > 0 )
Problem with php7.2:
Exception #0 (Exception): Warning: count(): Parameter must be an array or an object that implements Countable in /***/html/app/code/Sebwite/Sidebar/Block/Sidebar.php on line 168
Fix:
Change line 168 of /***/html/app/code/Sebwite/Sidebar/Block/Sidebar.php to if (is_object($childCategories) && count($childCategories) > 0 )