Enable Custom Fields For Custom Post Type When CPT Created Using Plugin

Try with this. just change CPT with your post type.

function wpcodex_add_excerpt_support_for_cpt() {
    add_post_type_support( 'CPT', 'custom-fields' );
}
add_action( 'init', 'wpcodex_add_excerpt_support_for_cpt' );