Custom Taxonomy not working front side Woocommerce

Add an already registered taxonomy to an object type.

function add_hunts_type(){
/*Taxonomy details*/

register_taxonomy_for_object_type( 'carhunt', 'product' );

}
add_action( 'init', 'custom_taxonomy_Hunt' );