That solved my problem, thank you for the quick response. Below is the final code I used for anyone else searching for the problem.
function kia_add_subtitle_to_woocommerce(){
if( function_exists( ‘the_subtitle’ ) ) the_subtitle( ‘<h4 class=”subtitle”>’, ‘</h4>’ );
}
add_action( ‘woocommerce_single_product_summary’, ‘kia_add_subtitle_to_woocommerce’, 3 );
Thanks