woocommerce_get_price_suffix, , $this, $price, $qty

woocommerce_get_price_suffix, , $this, $price, $qty

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

apply_filters('woocommerce_get_price_suffix, , $this, $price, $qty') is found 1 times:

  • /includes/class-wc-product-variable.php line 208
    	public function get_price_suffix( $price = '', $qty = 1 ) {
    		$suffix = get_option( 'woocommerce_price_display_suffix' );
    
    		if ( strstr( $suffix, '{' ) ) {
    			return apply_filters( 'woocommerce_get_price_suffix', '', $this, $price, $qty );
    		} else {
    			return parent::get_price_suffix( $price, $qty );
    		}
    	}
    
    	/**