I wanted to try to avoid messing with the php files in case the updates change them, but I received a working solution here, thank you for both of your help!
How to add label to Woocommerce title?
byu/jeremynative99 inWordPress
remove_action(‘woocommerce_single_product_summary’,’woocommerce_template_single_title’,5);
add_action(‘woocommerce_single_product_summary’, ‘woocommerce_my_single_title’,5);
if ( ! function_exists( ‘woocommerce_my_single_title’ ) ) {
function woocommerce_my_single_title() {
?>
<span>Title: </span><h1 itemprop=”name” class=”product_title entry-title”><?php the_title(); ?></h1>
<?php
}
}
I’m using a theme that isn’t compatible with Woocommerce, so the title was affecting many of the menu and other items. This solution worked