Подскажите как сейчас вырезать H2 из названия товаров в каталоге? После обновления WooCommerce старый код перестал работать.
Тема
blocksy
Старый код
// Remove the product title from the product loop
remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
// Add the product title to the product loop as an anchor tag
add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title_as_anchor', 10 );
/**
* Display the product title as an anchor tag in the product loop.
*/
function woocommerce_template_loop_product_title_as_anchor() {
global $product;
$title = $product->get_title();
if ( ! $product->is_visible() ) {
return;
}
echo '<a href="' . get_the_permalink() . '">' . $title . '</a>';
}