Tip
The options listed in the Symbol Position column come from WooCommerce, which allows add the symbol before the price (position left) or after the price (position right). This feature works out of the box, and it's sufficient to choose the desired option and save the settings to apply it on the frontend.
3. How to append the currency code after the price
add_filter('woocommerce_get_price_html', function($price_html, $product) { // Append the currency code to the price. When the currency symbol is configured to // appear on the left, the price will be displayed like "$10 USD" $html .= ' ' . get_woocommerce_currency(); return $html; }, 10, 2);
Tip
Rather than adding custom code to the site, it could be preferable to just add the currency code to the symbol, as described in section #1. That solution works out of the box, and it's a convenient way to quickly identify the currency being used.
4. Contact us if you have any questions
As indicated at the top of the article, all the code examples are provided on an "as is" basis, and they fall outside the scope of our support service. Although we won't be able to implement them for you, nor provide a guarantee that they will work, we will be happy to answer any questions you might have. You can simply contact us, and we will get back to you as soon as possible.
You can purchase the Currency Switcher from our online shop.