Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Last active February 17, 2023 11:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ibndawood/34744d6cd3bc45e41385ac7b3c977011 to your computer and use it in GitHub Desktop.
Save ibndawood/34744d6cd3bc45e41385ac7b3c977011 to your computer and use it in GitHub Desktop.
WooCommerce - Remove h2 tag from product title
<?php
/**
* Show the product title in the product loop. By default this is an H2.
*/
function woocommerce_template_loop_product_title() {
?><span class="<?php echo esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ); ?>"><?php the_title(); ?></span><?php
}
@YEYO87
Copy link

YEYO87 commented Feb 15, 2021

Thank you very much my friend! It works perfectly!

Best regards!

@ibndawood
Copy link
Author

Thank you very much my friend! It works perfectly!

Best regards!

You are welcome

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment