Change Header Tag on Product Titles for Woocommerce Products
When you want to add your own h1, h2 or h3 tags in the pages that have Woocommerce products on them then you will need to strip the header tag from the product title.
Insert the code below to the bottom of your functions.php . This will remove the header tag from the Woocommerce product title and create it into your basic paragraph class.
//WooCommerce - Change Product Title Header Tag to Paragraph Tag
function wps_change_products_title() {
echo '<p class="woocommerce-loop-product__title">'. get_the_title() . '</p>';
}
remove_action('woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10);
add_action('woocommerce_shop_loop_item_title', 'wps_change_products_title', 10);