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;
I found the problem. It was a conflict with the WP Plugin Maintenance by Muneeb. Deactivating this plugin restored all my expand/collapse buttons, including the buttons on the E-mail Notification page.
Note, the expand/collapse buttons provided by the native WP Admin (such as what you see on the Dashboard) were not affected at all, they continued to show even when the User-Meta expand/collapse buttons failed to show. This is because the two system use different code to implement this feature. Only User-Meta is impacted by the Maintenance plug-in.
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:
12/19/19501950
This is is now a bug and should get fixed.
Author
Posts
Viewing 3 posts - 1 through 3 (of 3 total)
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.