dalton999
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [Meta Box] Date Picker ProblemHi @rilwis ,
Thanks for the patch, it works.
result: https://prnt.sc/3awNeycgNVCiForum: Plugins
In reply to: [Meta Box] Date Picker ProblemHello @rilwis ,
can you try it on Windows?
Forum: Plugins
In reply to: [Meta Box] Date Picker ProblemHello @rilwis
I checked it in several browsers:
Chrome: https://prnt.sc/kN1l_ZpCRRzg
Edge: https://prnt.sc/SKeq1NSqHeTl
Firefox: https://prnt.sc/dMdYnU3QndPmyou 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; }
Viewing 3 replies - 1 through 3 (of 3 total)