Home Forums WoodMart support forum Product title H tags – change title h tag from H3 to H2?

Product title H tags – change title h tag from H3 to H2?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #651497

    piotrburchart
    Participant

    Hi,

    How do we change product titles on archive pages from H3 to H2?

    KR,

    Piotr

    #651634

    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,

    #651670

    piotrburchart
    Participant

    Thank you so much.

    What about changing H5 for the Product Categories to Span?

    https://ibb.co/dJD472S7

    Thank you

    #651740

    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,

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