How can I change to US states and remove USD label from payment field

  • davebyers
    Asked on December 1, 2015 at 12:51 PM

    Hi,

     

    This is a minor thing. But is there any way of renaming Province or State to just State, and zip code or postal code to just zip code.  We would never, ever need any accommodations for Canadians. We are a small Pennsylvania organization. Plus we don't need USD. We are an always-american organization (I want it to read $15 not $15 USD).  Nothing against international - universal forms, but I would like our forms to be more customized for our market. Thanks.

     

    Dave

     

     

  • David JotForm Support
    Replied on December 1, 2015 at 2:36 PM

    Hi,

    Both can be accomplished, however, removing USD from the payment field is a bit trickier.  For the address field, if your change State/Province input to "American States", the address field will only show Zip Code and State accordingly:

    How can I change to US states and remove USD label from payment field Image 1 Screenshot 20

    Since USD cannot be removed from the payment field, you would need to essentially put a white block over it.  This code would do so:

    http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    b span:after {
    content: "";
    position: absolute;
    background: white;
    width: 50px;
    height: 20px;
    margin-left: 2px;
    }

    .form-product-item:hover {
    background: transparent;
    }

    #total-text:after {
      background: transparent;
    }

    If you change the background color of your form, you would also need to change the color of the block.  I highlighted that portion in the code.

    If you have any further questions, let us know and we will be happy to help.

  • David JotForm Support
    Replied on December 1, 2015 at 2:37 PM

    I forgot to include my test form, here is a copy of your form with the changes made:

    https://form.jotform.com/53345379834970

  • RainbowChorale
    Replied on December 1, 2015 at 4:57 PM

    thanks david!

  • David JotForm Support
    Replied on December 1, 2015 at 6:39 PM

    You are very welcome!  If there is anything else we can help with just let us know.