Changing the format of the search widget's date picker

By default, GravityView formats dates in the US format of mm/dd/yyyy . If you would like to change that, you can.

Date format options are:

  • dmy - dd/mm/yyyy
  • dmy_dash - dd-mm-yyyy
  • dmy_dot - dd.mm.yyyy
  • mdy - mm/dd/yyyy (default)
  • ymd_slash - yyyy/mm/dd
  • ymd_dash - yyyy-mm-dd
  • ymd_dot - yyyy.mm.dd

To modify the format, use the gravityview/widgets/search/datepicker/format filter below:

function modify_gravityview_search_datepicker_format( $format ) {
    return 'mdy'; // <-- Change this to one of the date format options above
}
add_filter( 'gravityview/widgets/search/datepicker/format', 'modify_gravityview_search_datepicker_format'  );

Read here how to add these code samples to your website: Where to put code samples.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us