CSS to Remove AUD from the product price

  • ElsieDowell
    Asked on March 27, 2019 at 2:58 AM

    I have asked this question previously, and the answer I was given (change to US dollar!) doesn't solve my problem.  All that did was charge my customers US dollars!  

    Could you please give me a piece of code to remove the AUD from the price?

    At the moment it looks like:

    $4.95AUD - which is very annoying, because obviously if we are selling in Australia, then we are selling in Australian dollars!

    There must be a way to override the code which adds the country to the price if it isn't in US dollars.

    Thanks

    Elsie

    Jotform Thread 1773206 Screenshot
  • Victoria_K
    Replied on March 27, 2019 at 6:03 AM

    I can suggest the following CSS code to hide AUD values:

    span[id*='price']:after {

      content: ' ';

      width: 1em;

      height: 1em;

      position: relative;

      top: 0;

      left: 2.5em;

      background: white;

      padding-left: 2.2em;

    }

    Guide: How-to-Inject-Custom-CSS-Codes

    CSS to Remove AUD from the product price Image 1 Screenshot 20

    We will be glad to assist if you need more help, just let us know. 

  • ElsieDowell
    Replied on March 28, 2019 at 12:50 AM

    Thank you so much!

    Works perfectly.  As always - Jotform support is the best!

    Cheers

    Elsie