skip to Main Content

Woocommerce adding "stock" after price in shop page

Hey I need to put "in stock" text after price at my shop page. Screen I found this code add_filter( 'woocommerce_get_price_html', 'prepend_append_icon_to_price', 10, 2 ); function prepend_append_icon_to_price( $price, $product ) { if( has_term( 'fast-shipping', 'product_cat', $product->get_id() ) && ! is_product()…

VIEW QUESTION
Back To Top
Search