Product title H tags – change title h tag from H3 to H2?
-
Hi,
How do we change product titles on archive pages from H3 to H2?
KR,
Piotr
Hello,
There isn’t a direct option in the theme settings to change the product title tag from <h3>
to <h2>
. Please add this code to the functions.php of the theme:
remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
add_action( 'woocommerce_shop_loop_item_title', function() {
echo '<h2 class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></h2>';
}, 10 );
Best Regards,
Thank you so much.
What about changing H5 for the Product Categories to Span?
https://ibb.co/dJD472S7
Thank you
Hello,
There isn’t a direct option in the theme settings to change the tag.
However, you can achieve this by editing the theme file. All the customizations made in the theme files are at your own risk
inc/integrations/woocommerce/template-tags.php
Best Regards,