Home Forums WoodMart support forum Change h3 into p

Change h3 into p

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

    webreturn
    Participant

    Hi,

    We are trying to modify the product title from a H3 tag to a P tag. \themes\woodmart\inc\integrations\woocommerce\template-tags.php – line 13 seems to be generating the product title.

    https://prnt.sc/xpdirm

    I can modify this to a P tag which seems to be working.

    https://prnt.sc/xpdjfr

    When I duplicate the template-tags.php file to my child theme it doesn’t seem to be working. Apperently the child theme ignores this file. Any suggestions on how to fix this?

    Best regards, Tim

    #261784

    Artem Temos
    Keymaster

    Hello,

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    function woocommerce_template_loop_product_title() {
    	echo '<p class="product-title"><a href="' . get_the_permalink() . '">' . get_the_title() . '</a></p>';
    }

    Regards

    #262043

    webreturn
    Participant

    Great, thank you !!

    #262078

    Artem Temos
    Keymaster

    You are welcome! Feel free to contact us if you have any questions.

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