Hi it worked,
i created my own action
add_action( 'custom_product_name_title', 'custom_product_category_title', 6 );
function custom_product_category_title(){
global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );
$title = '';
foreach ($terms as $term) {
$title = $term->name .' ';
}
echo "<span>".$title."</span>";
}
and added the new title.php:
<h1 class="product_title entry-title">
<?php do_action( 'custom_product_name_title' ); ?><?php echo esc_html( get_the_title() ); ?>
</h1>