Solution:
For anyone who will have this problem, replace the paths, put it in your themes functions.php and refresh browser:
$cctm = get_option('cctm_data');
foreach( $cctm["cache"]["helper_classes"]["fields"] as $key=>$f ) {
$cctm["cache"]["helper_classes"]["fields"][$key] = str_replace("OLD BASE PATH","NEW BASE PATH",$f);
}
foreach( $cctm["cache"]["helper_classes"]["filters"] as $key=>$f ) {
$cctm["cache"]["helper_classes"]["filters"][$key] = str_replace("OLD BASE PATH","NEW BASE PATH",$f);
}
update_option( "cctm_data", $cctm );
Credit goes to https://gist.github.com/shoreline-chrism/1a8de1588ed67247ab03#file-wp-cctm-path-fix-php