DONE. I’ll post the solution, is with PHP on functions.php
add_filter( 'wpc_filter_post_meta_term_name', 'wpc_custom_term_name', 10, 2 );
function wpc_custom_term_name( $term_name, $products_name ){
if( $products_name === 'products' ){
$term_name = get_the_title( $term_name );
}
return $term_name;
}