Cómo cambiar el título del ciclo del producto WooCommerce de H2 a H3
Pegar código en archivo functions.php
//WooCommerce Change Title from H2 -> H3
function
wps_change_products_title() {
echo
'<h3 class="woocommerce-loop-product__title">'
. get_the_title() .
'</h3>'
;
}
remove_action(
'woocommerce_shop_loop_item_title'
,
'woocommerce_template_loop_product_title'
, 10);
add_action(
'woocommerce_shop_loop_item_title'
,
'wps_change_products_title'
, 10);