Title: Dates
Last modified: August 20, 2016

---

# Dates

 *  Resolved [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/)
 * Hey
 * I’m currently evaluating this plugin, free version on a dev site and playing 
   with the small business demo.
 * One thing I have noticed is, in the main bookings view in the admin panel the
   date doesn’t respect the setting and always stays in US format.
 * Regards
 * [http://wordpress.org/extend/plugins/booking/](http://wordpress.org/extend/plugins/booking/)

Viewing 10 replies - 1 through 10 (of 10 total)

 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/#post-3478113)
 * Hello.
    You can change the dates format at the General Booking Settings page,
   at the “Listing of bookings” section.
 *  Thread Starter [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/#post-3478114)
 * Yes I know, but it doesn’t change the one on the main bookings admin page.
 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/#post-3478122)
 * Where is it, at your system or at the live demo ?
    Can you send the screenshots
   of the General Booking Settings page and the Booking Listing page to the support
   email (the support email, you can find at the plugins site)?
 *  Thread Starter [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/#post-3478125)
 * Both
 * [See here](http://109.123.74.4/~frciorg/wp-content/uploads/2012/10/bookingerror.png)
 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/dates-4/#post-3478131)
 * ahh.. I see.
    The dates format at the general booking settings page is apply 
   only to the booking dates of bookings. It’s not impact to the creation/modification
   date of booking in actual version.
 *  Thread Starter [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478269)
 * Is there any way you can fix the dates throughout the admin page as I just know
   before I buy with the new timeline, staff in our organisation will be confused.
 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478270)
 * Did you mean fixing format of the creation booking date ?
 *  Thread Starter [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478271)
 * Throughout the admin area all dates are in US format where I really need them
   to follow the UK setting in general settings.
 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478272)
 * Hello,
    Please open this file: ../booking/lib/wpdev-bk-lib.php find this code:
 *     ```
       //$date_format = get_bk_option( 'booking_date_format');
                   //$time_format = get_bk_option( 'booking_time_format');
                   if (empty($date_format)) $date_format = "m / d / Y, D";
                   if (empty($time_format)) $time_format = 'h:i a';
                   $cr_date = date_i18n($date_format  , mysql2date('U',$bk_modification_date));
                   $cr_time = date_i18n($time_format  , mysql2date('U',$bk_modification_date));
       ```
   
 * then replace it to this code (uncomment 2 first lines):
 *     ```
       $date_format = get_bk_option( 'booking_date_format');
                   $time_format = get_bk_option( 'booking_time_format');
                   if (empty($date_format)) $date_format = "m / d / Y, D";
                   if (empty($time_format)) $time_format = 'h:i a';
                   $cr_date = date_i18n($date_format  , mysql2date('U',$bk_modification_date));
                   $cr_time = date_i18n($time_format  , mysql2date('U',$bk_modification_date));
       ```
   
 * Then you can set the date format for the booking creation dates at the General
   Booking Settings page in form section.
 *  Thread Starter [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * (@garymoncrieff)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478273)
 * Thanks had to edit a few other areas too but that has fixed it.

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Dates’ is closed to new replies.

 * ![](https://ps.w.org/booking/assets/icon-256x256.gif?rev=3335907)
 * [Booking Calendar](https://wordpress.org/plugins/booking/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/booking/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/booking/)
 * [Active Topics](https://wordpress.org/support/plugin/booking/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/booking/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/booking/reviews/)

 * 10 replies
 * 2 participants
 * Last reply from: [garymoncrieff](https://wordpress.org/support/users/garymoncrieff/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/dates-4/#post-3478273)
 * Status: resolved