Home Forums WoodMart support forum Changing product titles H3 into H2 on the product archive (collection) page

Changing product titles H3 into H2 on the product archive (collection) page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #616853

    epic.gamer.store.ds
    Participant

    Hello,

    I would like to change the “<h3 class”wd-entities-title”>” to h2 on all my products (inside the collection pages). Here is a screenshot that shows what needs to be changed.

    Is there any way to do it? It would be to improve SEO.

    Thank you very much in advance!

    Attachments:
    You must be logged in to view attached files.
    #617069

    Luke Nielsen
    Keymaster

    Hello,

    Could you please check how it works with some default WordPress themes like WooCommerce Storefront to understand if it is our theme issue or not?

    Kind regards

    #617315

    epic.gamer.store.ds
    Participant

    Hi there,

    How am I supposed to make such a change on another wordpress theme ? I am sorry, I don’t know how to do it. I used to use shopify before and it was automatically H2.

    I think your theme puts it in h3 automatically. Is there any way to change it manually on your side ?

    many thanks

    #617715

    Luke Nielsen
    Keymaster

    Hello,

    By default WooCommerce sets there the title as h3, here is a 2025 default theme – https://prnt.sc/ZXbcuH86BnXk

    Define the code below in the functions.php file in your child theme –

    if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) {
    	function woocommerce_template_loop_product_title() {
    		echo '<h2 class="wd-entities-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></h2>';
    	}
    }

    Clear the cache and recheck the issue.

    Kind Regards

    #617723

    epic.gamer.store.ds
    Participant

    I will try this and let you know how it goes. Thank you!

    #617728

    Luke Nielsen
    Keymaster

    Hello,

    Okay, I will wait for your response.

    Have a good day!

    Kind Regards

Viewing 6 posts - 1 through 6 (of 6 total)