Validation in Miva store not allowing users to enter information into text boxes

89 views Asked by At

We are working on an online Miva store for a client which can be viewed here: http://www.labwear.com/shop/metrohm.htm. When a customer goes through all the steps: selects lab coat color, selects size, selects logo, selects embroidery color, and selects embroidery style users cannot enter anything into the embroidery name text box. If anyone has any idea why this is happening please let me know.

1

There are 1 answers

4
Tango Bravo On

Someone set the HTML5 attribute "readonly" on it. Miva Merchant doesn't use the HTML5 doctype or attributes by default, so someone set this. Take that off and see if it fixes the issue.

Also, you have JavaScript issues. You're trying to declare variables, but you're doing them like this:

var var_mvt = 1964M

Instead of:

var var_mvt = "1964M"

So that's stopping the rest of the JavaScript from executing (which might be triggering the removal of the "readonly" attribute).