woocommerce_countries_ex_tax_or_vat

woocommerce_countries_ex_tax_or_vat

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_countries_ex_tax_or_vat') is found 1 times:

  • /includes/class-wc-countries.php line 513
    	 */
    	public function ex_tax_or_vat() {
    		$return = in_array( $this->get_base_country(), $this->get_vat_countries(), true ) ? __( '(ex. VAT)', 'woocommerce' ) : __( '(ex. tax)', 'woocommerce' );
    
    		return apply_filters( 'woocommerce_countries_ex_tax_or_vat', $return );
    	}
    
    	/**
    	 * Outputs the list of countries and states for use in dropdown boxes.
    	 *
    	 * @param string $selected_country Selected country.