• We have products set to display in USD. So in the .price-wrapper element it displays for example (USD 14.95). But since we are only catering to US customers we don’t want or need to show the USD before price.

    How can we change it from (USD 14.95) to show ($14.95) instead? This would be a useful setting to add to the plugin settings/options, allow WP admin to specify the price symbol instead of the currency abbreviation.

    Thank you

Viewing 1 replies (of 1 total)
  • Thread Starter wordmax

    (@wordmax)

    I did find a work-around using CSS to modify the text/price appearance in the .price-wrapper price display…seems to work pretty well so far…

    .price-wrapper {
    background-color:#0db80d !important;
    font-size:18px !important;
    font-family:helvetica !important;
    font-weight:bold !important;
    }
    .price-wrapper:before {
        content: "$" !important;
        margin-right: 0px !important;
    }
    .price-wrapper .currency {
    display:none !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to change USD before price to $ instead?’ is closed to new replies.