Support

Account

Home Forums Front-end Issues Date Picker output translation Reply To: Date Picker output translation

  • Thanks for pointing me in the right direction.

    Implementation is really easy, this is what I ended up uisng:

    $date = date_i18n("l d F, Y", strtotime(get_field('date_picker')));
    echo $date;

    Cheers!