Quote Originally Posted by billsey5 View Post
So I'm running pretty much stock 1.5.5e and I'm getting complaints from customers who've been unable to sign up because it's not allowing their birth date. I can turn birth date off but would like to leave it on to help verify the customer is of legal age. In testing I find it all works fine with the normal interface, but if you try it from a mobile device the birth date field is terribly hard to use. Any click into the field brings up the GUI calendar with today selected and the user is required to click the back month arrow about a bazillion times to get to a reasonable date, then when they go to complete their registration it fails with 'are you sure your birth date is correct?" message. How can I fix this, or should I be using a different template than the stock one for mobile?
Open:

/includes/templates/responsive_classic/jscript/jscript_responsive_framework.php

Find:

Code:
$('input#dob').clone().attr('type','date').insertAfter('input#dob').prev().remove();
Change to:

Code:
$('input#dob').clone().attr('type','text').insertAfter('input#dob').prev().remove();