woocommerce_grouped_free_price_html, __( Free!, woocommerce
woocommerce_grouped_free_price_html, __( Free!, woocommerce
Appears in: woocommerce.11.0.0
Hook Type: filter
Displaying hooks found in version: woocommerce.11.0.0apply_filters('woocommerce_grouped_free_price_html, __( Free!, woocommerce') is found 1 times:
- /includes/class-wc-product-grouped.php line 123
$is_free = 0 === $min_price && 0 === $max_price; 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 ); }