Tagged: enfold, Product Grid, woocommerce
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?
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
Thank you! How do I make it an h4?
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