Hi,
Please try to use this php code at functions.php of child theme:-
add_action( 'plugins_loaded','sf_custom_post_remove', 100 );
function sf_custom_post_remove() {
remove_action( 'init', 'faqs_register');
remove_action( 'init', 'clients_register');
remove_action( 'init', 'jobs_register');
remove_action( 'init', 'portfolio_register');
remove_action( 'init', 'team_register');
remove_action( 'init', 'testimonials');
}
Thanks
Mohammad