Hello,
I found that all products have a tile H2 (please see the below link to screenshotfor information), but I want to change them to normal text format but keep the same font size as H2. I would like to know how to amend the code to fix it ?
https://drive.google.com/file/d/1FioOt364sP39fynC83uYV6vRKvXPHfmG/view?usp=sharing
https://drive.google.com/file/d/1ys4_cNb-DGVhhSNlFdUoX6Fd7aS5GU7-/view?usp=sharing
Thanks a lot,
Anthony
Hi Anthony,
Please go to /wp-content/plugins/woocommerce/includes/wc-template-functions.php and search for following code and change it as needed
function woocommerce_template_loop_product_title() {
echo '<h2 class="woocommerce-loop-product__title">' . get_the_title() . '</h2>';
}
H2 is default on WooCommerce
Best regards,
Yigit