Current data picker is very inconvenient to select some date far in the past/future. You can only go back and forth for 10 years. Then you select the furthest year available and has to reopen that area again to be able to select the date which is even further (that is terrible for entering birth date for instance).
At mobile devices it’s even more inconvenient with swiping along months. That would be cool if on mobile that field would open up a standard data/time picker/swiper window which is used on that particular mobile device.
I have another problem with the date picker. If you do exercise the great patience to go back multiple sets of decades to get to the proper year, then the final date installed in the field ends up with duplicate year values:
Hi, had the same issue with duplicated years (example: 11-30-20142014).
In my case the issue was in the User Meta Fields Editor, I had set the date format to mm-dd-yyyy. Using mm-dd-yy resolved the issue (only 2 “yy”).
Just in case this may also address your issue.
That was it — problem solved by changing the date format to “yy-mm-dd” from “yyyy-mm-dd”. Using the 2-character “yy” descriptor to obtain a 4-digit century value was the trick.
I use the following filter which is now working perfectly.
add_filter( ‘user_meta_field_config’, ‘user_meta_field_config_function’, 10, 3 );
function user_meta_field_config_function( $field, $fieldID, $formName )
{
// Check for date fiels
switch ($fieldID)
{
case 13:
// DOB — Assume someone between 16-100 years old
// allow selection of year field
// NOTE: To get 4-digit century, use “yy.” Using “yyyy” produces erroneous results
$field[‘field_options’] = array( “yearRange”=>”-100:-16″, “changeYear”=>true,”dateFormat”=>”yy-mm-dd” );
break;
case 14:
// Membersip date – Assume nothing older than 1972
// allow selection of year field
// NOTE: To get 4-digit century, use “yy.” Using “yyyy” produces erroneous results
$field[‘field_options’] = array( “yearRange”=>”1972:c”, “changeYear”=>true,”dateFormat”=>”yy-mm-dd” );
break;
}
return $field;
}
PACC, thanks so much.
Author
Posts
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish.AcceptRead More
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.