woocommerce_grouped_empty_price_html

woocommerce_grouped_empty_price_html

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_grouped_empty_price_html') is found 1 times:

  • /includes/class-wc-product-grouped.php line 127
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
            } 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 );
    }
     
    /*