woogists
3/12/2018 - 11:37 AM

[Show trailing zeros on prices] If you want to display trailing zeros on your prices within WooCommerce add the following code to your <em>T

[General Snippets] Show trailing zeros on prices

// Show trailing zeros on prices, default is to hide it.
add_filter( 'woocommerce_price_trim_zeros', 'wc_hide_trailing_zeros', 10, 1 );
function wc_hide_trailing_zeros( $trim ) {
    // set to false to show trailing zeros
    return false;
}