Hello,
Please try to add this code to the child theme in the functions.php file.
if ( ! function_exists( 'woodmart_single_product_title' ) ) {
function woodmart_single_product_title() {
echo '<h2 class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></h2>';
}
}
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
add_action( 'woocommerce_single_product_summary', 'woodmart_single_product_title', 5 );
Best Regards.