WooCommerce replace h2 from product-title
function woocommerce_template_loop_product_title() {
if ( is_product() ){
echo '<h2 class="product-title">' . get_the_title() . '</h2>';
} elseif ( is_shop() ) {
echo '<span class="product-title">' . get_the_title() . '</span>';
}
}
remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 11 );
9 Related pages
- Woo add rating to all products
- Woo get category name by id
- Woo Show all products
- WooCommerce change item title position
- Woocommerce import sample data in woocommerce (with Product Images)
- WooCommerce number of products displayed per page
- WooCommerce product loop
- WooCommerce replace h2 from product-title
- WooCommerce shop page loop























