Title: Date Picker Problem
Last modified: December 13, 2022

---

# Date Picker Problem

 *  Resolved [dalton999](https://wordpress.org/support/users/dalton999/)
 * (@dalton999)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/)
 * new update regarding this “Improve style for date picker”, causes select month
   and year to be blank.
 * check this: [https://i.imgur.com/jBkLZAD.png](https://i.imgur.com/jBkLZAD.png)
 * CSS that causes blank
 *     ```
       .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
           background: none;
           color: inherit;
           border: none;
       }
       ```
   

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Plugin Author [Anh Tran](https://wordpress.org/support/users/rilwis/)
 * (@rilwis)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16285528)
 * Hi [@dalton999](https://wordpress.org/support/users/dalton999/) ,
 * On which browser do you see the problem? We tested it on Safari, Chrome and Firefox
   and didn’t see this.
 *  Thread Starter [dalton999](https://wordpress.org/support/users/dalton999/)
 * (@dalton999)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16287048)
 * Hello [@rilwis](https://wordpress.org/support/users/rilwis/)
 * I checked it in several browsers:
    Chrome: [https://prnt.sc/kN1l_ZpCRRzg](https://prnt.sc/kN1l_ZpCRRzg)
   Edge: [https://prnt.sc/SKeq1NSqHeTl](https://prnt.sc/SKeq1NSqHeTl) Firefox: [https://prnt.sc/dMdYnU3QndPm](https://prnt.sc/dMdYnU3QndPm)
 * you can try to check it with this code
 *     ```
       add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' );
       function your_prefix_register_meta_boxes( $meta_boxes )
       {
       	$prefix = 'dat_';
       	$meta_boxes[] = array(
       		'id' => 'series',
       		'title' => __( 'Info', 'meta-box' ),
       		'pages' => array( 'post' ),
       		'context' => 'normal',
       		'priority' => 'high',
       		'autosave' => true,
       		'fields' => array(
       			array(
       				'name' => __( 'Date', 'meta-box' ),
       				'id'   => "{$prefix}release",
       				'desc'  => __( 'input release date', 'meta-box' ),
       				'type' => 'date',
   
       				'js_options' => array(
       					'appendText'      => __( '(M dd, yyyy)', 'meta-box' ),
       					'dateFormat'      => __( 'M dd, yy', 'meta-box' ),
       					'changeMonth'     => true,
       					'changeYear'      => true,
       					'showButtonPanel' => true,
       				),
       			),
                )	
       	);	
       	return $meta_boxes;
       }
       ```
   
 *  Plugin Author [Anh Tran](https://wordpress.org/support/users/rilwis/)
 * (@rilwis)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16287673)
 * Hi [@dalton999](https://wordpress.org/support/users/dalton999/) ,
 * I still can’t replicate the problem. The code above seems to work fine for me.
   I recorded a video: [https://monosnap.com/file/khzdS8pQX37P8nHZY5av4iEI93XeZi](https://monosnap.com/file/khzdS8pQX37P8nHZY5av4iEI93XeZi)
 *  Thread Starter [dalton999](https://wordpress.org/support/users/dalton999/)
 * (@dalton999)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16291165)
 * Hello [@rilwis](https://wordpress.org/support/users/rilwis/) ,
 * can you try it on Windows?
 *  [Super Pel](https://wordpress.org/support/users/oiewhfufbhjsdfjbkfskjduhuyuy/)
 * (@oiewhfufbhjsdfjbkfskjduhuyuy)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16291189)
 * i got the same issue,
 * when i click the date picker and trying to select the year, the year list is 
   mostly white and unreadable,
 * i tried it in Edge browser on windows 11, fresh wordpress installation.
 * please check this screenshot: [https://ibb.co/XzxL4cr](https://ibb.co/XzxL4cr)
 * my client also reporting the same issue.
 * please fix this issue, thank you.
 *  Plugin Author [Anh Tran](https://wordpress.org/support/users/rilwis/)
 * (@rilwis)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16293009)
 * Hi guys,
 * I’ve [fixed it here](https://github.com/wpmetabox/meta-box/commit/1235e7ecc0ca697bdbf2dc416c91e3da3a61959e).
   Can you please try it and let me know if it works for you?
 *  Thread Starter [dalton999](https://wordpress.org/support/users/dalton999/)
 * (@dalton999)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16293764)
 * Hi [@rilwis](https://wordpress.org/support/users/rilwis/) ,
 * Thanks for the patch, it works.
    result: [https://prnt.sc/3awNeycgNVCi](https://prnt.sc/3awNeycgNVCi)

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Date Picker Problem’ is closed to new replies.

 * ![](https://ps.w.org/meta-box/assets/icon-128x128.png?rev=1100915)
 * [Meta Box](https://wordpress.org/plugins/meta-box/)
 * [Support Threads](https://wordpress.org/support/plugin/meta-box/)
 * [Active Topics](https://wordpress.org/support/plugin/meta-box/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/meta-box/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/meta-box/reviews/)

 * 7 replies
 * 3 participants
 * Last reply from: [dalton999](https://wordpress.org/support/users/dalton999/)
 * Last activity: [3 years, 5 months ago](https://wordpress.org/support/topic/date-picker-problem-4/#post-16293764)
 * Status: resolved