woocommerce_grouped_price_html, $price . $this->get_price_suffix(

woocommerce_grouped_price_html, $price . $this->get_price_suffix(

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('woocommerce_grouped_price_html, $price . $this->get_price_suffix(') is found 1 times:

  • /includes/class-wc-product-grouped.php line 125
     
    			if ( $is_free ) {
    				$price = apply_filters( 'woocommerce_grouped_free_price_html', __( 'Free!', 'woocommerce' ), $this );
    			} else {
    				$price = apply_filters( 'woocommerce_grouped_price_html', $price . $this->get_price_suffix(), $this, $child_prices );
    			}
    		} else {
    			$price = apply_filters( 'woocommerce_grouped_empty_price_html', '', $this );
    		}
    
    		return apply_filters( 'woocommerce_get_price_html', $price, $this );