• Resolved bill_baroud02

    (@bill_baroud02)


    Hello

    I’ve got 2 date fields, one is working perfectly but the other does not show the value in admin (the value is correctly saved in DB).

    My code :

    $evt_general = new_cmb2_box( array(
    		'id'            => $prefix . 'general',
    		'title'         => __( 'Général', 'cmb2' ),
    		'object_types'  => array( 'evenement'), // Post type
    		'context'       => 'normal',
    		'priority'      => 'high',
    		'show_names'    => true, // Show field names on the left
    		'cmb_styles'    => true, // false to disable the CMB stylesheet
    	) );
    
    $evt_general->add_field( array(
    		'name' => __( 'Date de début', 'cmb2' ),
    		'id'   => $prefix . 'date_debut',
    		'type' => 'text_date',
    	) );
    
    	$evt_general->add_field( array(
    		'name' => __( 'Date de fin', 'cmb2' ),
    		'id'   => $prefix . 'date_fin',
    		'type' => 'text_date',
    	) );

    Any idea of what could be wrong ?

    thanks

    https://wordpress.org/plugins/cmb2/

Viewing 15 replies - 1 through 15 (of 30 total)
  • Thread Starter bill_baroud02

    (@bill_baroud02)

    I’ve changed the type of one of the field to text_date_timestamp and it resolved it.

    Thread Starter bill_baroud02

    (@bill_baroud02)

    Actually the problem seems to be linked to the date format, as the date picker use the french format d/m/Y and the date is displayed in m/d/Y format. I thinh that is why it cannot display a date like this 30/04/2015 (french format).

    i added ‘date_format’ => __( ‘d/m/Y’, ‘cmb2’ ), to the the field config but it does not work better.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Is it still showing the formatted date except the day/month reversed? or is it showing nothing?

    Thread Starter bill_baroud02

    (@bill_baroud02)

    it shows nothing if the day number is upper 12 or day/month reversed if under 12.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    At this point, my question is ending up being if it’s js that’s transforming it somehow but the proper saved value is part of the input value, or if it’s not even getting that far.

    Thread Starter bill_baroud02

    (@bill_baroud02)

    Hi,

    it’s properly saved in d/m/Y format but transformed to m/d/Y when displayed.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Sounds like it’s the format filter for on its way to the browser and via javascript.

    Try this out. It took me a moment to remember there was a filter for the default values for formats with the javascript.

    function bill_baroud02_custom_cmb2_date_format( $data ) {
    	$data['defaults']['date_picker']['dateFormat'] = 'dd/mm/yy';
    
    	return $data;
    }
    add_filter( 'cmb2_localized_data', 'bill_baroud02_custom_cmb2_date_format' );

    PHP’s date format didn’t work with my testing, so we need to use jQuery UI’s preferred style.

    Thread Starter bill_baroud02

    (@bill_baroud02)

    The datepicker defaults are already properly set with the dd/mm/yy format.

    I tried to set the field with a text_datetime_timestamp type and the behavior is different :

    If I select 15/01/2015 from the datepicker, the timestamp saved in DB corresponds to 01/15/2015 and then the value displayed is 15/01/2015.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    This snippet above corresponds to the format used by the javascript. When I was testing this yesterday, I set the format via php to d/m/Y. I was able to select a date, and it showed it as m/d/Y in the input. Once I hit save, it would show as d/m/Y as expected, but the moment I would re-click the input and choose a new date, it would go back to the m/d/Y until I save again.

    The snippet above changes the js format to use and properly makes it d/m/Y again after re-selecting a date, which I assumed was the issue. If I am still wrong there, then my apologies and we can continue looking into this.

    Thread Starter bill_baroud02

    (@bill_baroud02)

    Actually, for the datetime_timestamp type, the problem appears to be when converting the string date to timestamp. I’ve solved it by replacing :

    $value = strtotime( $value['date'] . ' ' . $value['time'] )

    with :

    $format = $this->field->args['date_format'] . ' ' . $this->field->args['time_format'];
    			$date   = DateTime::createFromFormat( $format, $value['date'] . ' ' . $value['time'] );
    			$value  = $date->getTimestamp();

    in CMB2_Sanitize.php line 219

    I’m not sure it’s the nicest way but it works.

    Thank for ur time and this nice plugin.

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Not the best idea to update the core code, because any time it’s updated, you’ll need to re-implement that, and Justin pushes updates out fairly frequently.

    Sorry if I’m getting into your topic (I don’t know if it’s the right way to do).

    I notice that the topic is not resolved and I have the same problem described by bill_baroud02 at the beginning, i.e.

    “it shows nothing if the day number is upper 12 or day/month reversed if under 12.”

    .

    The date with the correct format (d/m/Y) is saved in DB but nothing appears in the admin when I modifie a post. So if I update the post without re-fill the text_date field, it obviously changes the value saved in DB to blank.

    Have I missed something to resolve it? (I have the impression that the rest of your conversation isn’t about this problem in particular, but I can make a mistake as I don’t understand all the subtleties of english language, which is unfortunately not my mother tongue.)

    Thanks

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    The snippet I typed up in this reply https://wordpress.org/support/topic/date-field-doesnt-display-the-value-in-admin?replies=13#post-6815969 is related to the jQuery UI popup formatting, which I think is likely related to your issue as well.

    It saves in the database the right format, but the popup reverts it back to the US format, or apparently in your case, an empty date value.

    My problem doesn’t seem to come from the jQuery UI popup, because it works perfectly when I choose a date in the popup (and in the right format).

    The blank text_date field appears when I come back to admin to modify a post (or just after updating a post when wordpress reloads the admin page). Seems it is not able to handle the corresponding value from DB? (However, when the day number is lower 12 it fills correctly the field)

    The problem exists only when I choose an ambiguous date (like October, 31 or May, 22 saved ’22/05/2015′)… All the dates with a day number > 12.

    I’m not sure that my explanations are very clear… Sorry!

    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Could you provide the CMB2 code you’re using for this, as well as the version you’re on for the plugin?

Viewing 15 replies - 1 through 15 (of 30 total)
  • The topic ‘Date field doesn't display the value in admin’ is closed to new replies.