Please note I have tried the following, but the currency still does not show:
• Navigate to WooCommerce > Settings > General.
• Under the “Currency Options” section, confirm that the Currency is set to “United States Dollar (USD).”: https://d.pr/i/Y41Kuw
• In the same “Currency Options” section, look for Currency Position (options include Left, Right, Left with Space, Right with Space). This determines where the currency symbol or name appears.
AFAIK, the “currency type” with text, “USD” does not display out of the box, which I think is what you are trying to achieve.
If you are familiar with code snippets, you could add this to your functions.php page:
add_filter( 'woocommerce_get_price_suffix', 'price_suffix_add_price_suffix', 99, 4 );
function price_suffix_add_price_suffix( $html, $product, $price, $qty ){
$html .= 'USD';
return $html;
}
@y0universe I just realized something else you could try that does not require adding any lines of code to your functions.php file.
If you go into the “Tax Options” settings, there is an option to add a “Price display suffix.” I never thought of this before, as I had always thought of this for adding some text in regard to taxes. But sure enough, if you were to add USD in that option, this may also do what you are wanting to do.