Hi there and thank you for using our plugin.
The range of years in jQuery’s calendar plugin bugged me too, but I never “searched” for a solution but now I did. In the next version the scrolling will have 90 years to select. If you want to implement it now you can go to file js/script.js at line 10 and add the following:
yearRange: "-90:+0",
The birthday field can’t be requiered for all installations, some admins may not want to force their users to add this info (the field is also available in user’s profile page in wordpress admin panel). Same goes for the name field, if you want to hide the field you can either:
– add a CSS rule for #first_name (which must be present in wp-register.php so you have to find the appropriate CSS file)
– in file birthday-widget.php at line 105:
<label for="first_name"><?php _e('First Name','birthdays-widget') ?><br />
<input type="text" name="first_name" id="first_name" class="input"
value="<?php echo esc_attr(stripslashes($first_name)); ?>" /></label>
this code must me removed or commented out.
PS: If everything works and you like our work, please consider leaving a rating.