Hi @dalton999 ,
On which browser do you see the problem? We tested it on Safari, Chrome and Firefox and didn’t see this.
Hello @rilwis
I checked it in several browsers:
Chrome: https://prnt.sc/kN1l_ZpCRRzg
Edge: https://prnt.sc/SKeq1NSqHeTl
Firefox: 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;
}
Hi @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
Hello @rilwis ,
can you try it on Windows?
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
my client also reporting the same issue.
please fix this issue, thank you.
Hi guys,
I’ve fixed it here. Can you please try it and let me know if it works for you?
Hi @rilwis ,
Thanks for the patch, it works.
result: https://prnt.sc/3awNeycgNVCi