This error appears when no repeatable filed are created.
Warning: count(): Parameter must be an array or an object that implements Countable in :
admin-page-class\admin-page-class.php on line 1398
You can fix this just by change the order of checking if on line 1398 from :
if (count($meta) > 0 && is_array($meta) ){
to
if ( is_array($meta) && count($meta) > 0 ){
so If $meta is empty it will stop cheking for count.
Hope this will help someone.