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

    Hello! Following a recent update, the product titles in the product grid increased to H1 (and became all caps). I’d like it to go back to how it was (H4 and no changes to the case). Can you help?

    #800869

    Hey Jennifer,
    Try this code in the General Styling > Quick CSS field:

    .entry-content-wrapper h2.woocommerce-loop-product__title {text-transform: none!important; }

    Best regards,
    Mike

    #804624

    Thank you! How do I make it an h4?

    #804634

    Hi,

    Please go to wp-content/plugins/woocommerce/includes/wc-template-functions.php file and find

    
    echo '<h2 class="woocommerce-loop-product__title">' . get_the_title() . '</h2>';
    

    and change it to

    
    echo '<h4 class="woocommerce-loop-product__title">' . get_the_title() . '</h4>';
    

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.