Change a currency symbol in Woocommerce Post author:Best-IT Scholars Post published:January 14, 2023 Post category:Slice of Code Post comments:0 Comments You can change the currency symbol by using the following code: /** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'AUD': $currency_symbol = 'AUD$'; break; } return $currency_symbol; } Click here for better understanding Opens in a new window Twitter Opens in a new window Facebook Opens in a new window Google+ Opens in a new window Pinterest Opens in a new window LinkedIn You Might Also Like Remove Zero Decimals from product price in WooCommerce January 14, 2023 WooCommerce: Allow 1 Product in the Cart or checkout page October 13, 2021 Leave a Reply Cancel replyYou must be logged in to post a comment.Login with your Social ID