wc_get_price_decimal_separator filter-hookWC 2.3

Return the decimal separator for prices.

Usage

add_filter( 'wc_get_price_decimal_separator', 'wp_kama_wc_get_price_decimal_separator_filter' );

/**
 * Function for `wc_get_price_decimal_separator` filter-hook.
 * 
 * @param  $option 
 *
 * @return 
 */
function wp_kama_wc_get_price_decimal_separator_filter( $option ){

	// filter...
	return $option;
}
$option
-

Changelog

Since 2.3 Introduced.

Where the hook is called

wc_get_price_decimal_separator()
wc_get_price_decimal_separator
woocommerce/includes/wc-formatting-functions.php 528
$separator = apply_filters( 'wc_get_price_decimal_separator', get_option( 'woocommerce_price_decimal_sep' ) );

Where the hook is used in WooCommerce

Usage not found.