Support Archive

Important!!!    Check actual Support Forum, if you need to ask a Questions.

  1. HI

    I'm getting this failure everywhere on my website and in the wordpress admin, it disappears when I deactivate the booking calendar plugin

    Warning: Missing argument 2 for wpdb::prepare(), called in /customers/3/0/b/huslyweb.dk/httpd.www/wp-content/plugins/booking.personal.4.0.1/inc/personal.php on line 392 and defined in /customers/3/0/b/huslyweb.dk/httpd.www/wp-includes/wp-db.php on line 1147 Warning: Missing argument 2 for wpdb::prepare(), called in /customers/3/0/b/huslyweb.dk/httpd.www/wp-content/plugins/booking.personal.4.0.1/lib/wpdev-booking-class.php on line 1379 and defined in /customers/3/0/b/huslyweb.dk/httpd.www/wp-includes/wp-db.php on line 1147 Warning: Missing argument 2 for wpdb::prepare(), called in /customers/3/0/b/huslyweb.dk/httpd.www/wp-content/plugins/booking.personal.4.0.1/lib/wpdev-booking-class.php on line 1379 and defined in /customers/3/0/b/huslyweb.dk/httpd.www/wp-includes/wp-db.php on line 1147

    I have no idea what it means, but it is probably something i've caused myself, I beleive I can get rid of it, by deleting the plugin and reinstalling it, but I have the paid personel booking calendar, and i'm not in possesion of the original file anymore.

    Will I loose the paid version if i temporarily delete it? If i do, how can i get it back without paying again?

    Best regards
    Julius

  2. Calendar still displays as available even though a resource is booked on that date?

    The system works fine but we found out that even a resource has already had a confirmed booking, it still displays as 'Available' in Add Booking. And if a resource on a date has a pending booking, it won't display properly in the Add Booking page neither.

    The entry is there when I view them in Booking, but they won't display properly.

    And in fact I can create more bookings on a resource that has already had a confirmed booking on a particular date, which doesn't make sense.

    I have made modifications to traditional-light.css, I have already re-load the original .css file, in fact, all the files that I have modified (admin.css, traditional-light.css and wpdev-bk-lib.php), from the source, but the problem is still here, please advise.

    • Hello.

      Please open the General Booking Settings page and recheck that you do not activated the "Use pending days as available:" option on the General Booking Settings page in "Advanced section" (available in the Booking Calendar Business Large version).
      Also please check that you do not making the booking for the booking resources with specific capacity (available in the Booking Calendar Business Large version). In this case the date(s) in calendar will be available, until number of booking less then capacity of booking resources. Please read more info about the booking resources and how to configure them here https://wpbookingcalendar.com/help/booking-resource/ .

      Also please recheck that you do not use any cache plugins in your website. Otherwise please deactivate these plugins or add the exception to the page, where you are having the booking form.

      Please make all test with the original files (do not modified) of Booking Calendar, otherwise we do not guarantee the correct work of plugin and do not support it.
      Kind Regards.

      • Hi,
        I used Business Small version, so the settings you mentioned are not available.

        However, I narrowed down the problem:
        All bookings BEYOND current date (today) works fine but dates BEFORE current date (today) will have such 'error'.

        (FYI I have modified some codes as per your suggestion in order to 'open up' adding bookings before current date, but I cannot search it from your support page anymore)

        Since we are moving our booking system from a legacy one to your good plugin, we would like to have the same feature when inputting previous bookings. Is it possible?

        • Hello.
          Please recheck this your previous discussion, in case you need it: https://wpbookingcalendar.com/support/comment-page-207/#comment-7645
          In addition you need to make this customization to be able to see the previously booked dates (in a past):
          Please open this file ../booking/lib/wpdev-booking-class.php

          then find this code:

          if ($approved == 'all') $sql_req = apply_bk_filter('get_bk_dates_sql', "SELECT DISTINCT dt.booking_date FROM {$wpdb->prefix}bookingdates as dt INNER JOIN {$wpdb->prefix}booking as bk ON bk.booking_id = dt.booking_id WHERE dt.booking_date >= CURDATE() AND bk.booking_type IN ($bk_type_additional) ". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ." ORDER BY dt.booking_date", $bk_type_additional, 'all' , $skip_booking_id); else $sql_req = apply_bk_filter('get_bk_dates_sql', "SELECT DISTINCT dt.booking_date FROM {$wpdb->prefix}bookingdates as dt INNER JOIN {$wpdb->prefix}booking as bk ON bk.booking_id = dt.booking_id WHERE dt.approved = $approved AND dt.booking_date >= CURDATE() AND bk.booking_type IN ($bk_type_additional) ". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ." ORDER BY dt.booking_date", $bk_type_additional, $approved, $skip_booking_id );
          and replace it to this code:
          if ($approved == 'all') $sql_req = apply_bk_filter('get_bk_dates_sql', "SELECT DISTINCT dt.booking_date FROM {$wpdb->prefix}bookingdates as dt INNER JOIN {$wpdb->prefix}booking as bk ON bk.booking_id = dt.booking_id WHERE bk.booking_type IN ($bk_type_additional) ". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ." ORDER BY dt.booking_date", $bk_type_additional, 'all' , $skip_booking_id); else $sql_req = apply_bk_filter('get_bk_dates_sql', "SELECT DISTINCT dt.booking_date FROM {$wpdb->prefix}bookingdates as dt INNER JOIN {$wpdb->prefix}booking as bk ON bk.booking_id = dt.booking_id WHERE dt.approved = $approved AND bk.booking_type IN ($bk_type_additional) ". (($skip_booking_id != '') ? " AND dt.booking_id NOT IN ( ".$skip_booking_id." ) ":"") ." ORDER BY dt.booking_date", $bk_type_additional, $approved, $skip_booking_id );

  3. Hello,

    Can Booking Calendar translate my forms when someone switches language throu WPML plugin - for example on english page i want to have forms in english, on german page i want to have german forms. Please let me know how to achieve this. I've bought plugin today.

    • Hello.
      Unfortunately such feature do not exist in the original versions of Booking Calendar. Sorry
      Kind Regards.

      • Thanks for the fast answer.
        Some suggestion to make it possible, maybe with some programming on the plugin files?

        • Hello.
          Please make this fix.
          Open this file ../booking/inc/personal.php

          1) then in the content of this function wpdev_get_booking_select_form($booking_select_form, $attr) find this code:

          $booking_select_form .= ' <option value="'.$tl->id.'">'.$tl->title.'</option>';
          and replace it to this code:
          if ( ( isset($_GET['resource_id'] ) ) && ( $_GET['resource_id'] == $tl->id ) ) $is_res_selected = ' selected="SELECTED" '; else $is_res_selected = ''; $booking_select_form .= ' <option '.$is_res_selected.' value="'.$tl->id.'">'.$tl->title.'</option>';

          2) then find this code:

          $booking_select_form .= ' <div class="bk_forms" id="hided_booking_form'.$tl->id.'" style="display: none;">';

          and replace it to this code:

          if ( ( isset($_GET['resource_id'] ) ) && ( $_GET['resource_id'] == $tl->id ) ) $is_res_selected = 'display: block;'; else $is_res_selected = 'display: none;'; $booking_select_form .= ' <div class="bk_forms" id="hided_booking_form'.$tl->id.'" style="'.$is_res_selected.'">';

  4. Hello WPBookingCalendar-Team,

    I'm thinking about to buy the multiuser Version of your Software, but I see not very much statistics and reportings. Are in coming updates statistics about the total revenue per day, per ressource, per month, etc.. planned?

    Thanks.

    • Hello.
      Unfortunately, the original versions of Booking Calendar does not have the "statistic" module, yet.
      But in the any paid versions of Booking Calendar you can export the exist bookings to the CSV file, and then open these bookings using the MS Excel or some other applications, there you can create some type of statistic.
      Kind Regards.

      • Ok, can I pay you to code me some custom statistics (seperate for each user)?

        • Hello.
          Unfortunately we can not start right now some custom development or new project, because we are almost have no free time.
          Thank you for understanding.
          Kind regards.

  5. Shortcodes. Based on the season I want to be able to set the start day of the week AND the number of days selected. So for example, in high season I'd want 8 days selected running from Saturday, but in Low Season I'd allow 'short breaks' so would want to set it to start from Friday or Monday and to select three or four days in one block. Is this possible?

      • I've had a good look but can't quite get it to do what I want... but I may be doing the wrong thing?

        I've found that this is perfect... except it's not linked to seasons.

        bk_days_selection_mode = 'fixed';
        bk_1click_mode_days_num = 7; // Number of days selection with 1 mouse click
        bk_1click_mode_days_start = [6]; // { -1 - Any | 0 - Su, 1 - Mo, 2 - Tu, 3 - We, 4 - Th, 5 - Fr, 6 - Sat }

        In the different seasons I'd want a different option, so in low season, they could pick short breaks of three of four days (instead of the normal 7) and could also start from a diiferent day. Is this possible to link the above script to seasons? Many thanks for any help.

        • Hello.
          Its possible to configure the start date, which depend from the season filter and number of days to select, which depend from this start date inside of booking shortcode in the "options" parameter.
          Please read how manually to configure Booking Calendar shortcodes here https://wpbookingcalendar.com/help/booking-calendar-shortcodes/

          For example:
          [booking type=1 form_type='standard' nummonths=2 options='{select-day condition="season" for="High season" value="7-14,20"},{select-day condition="season" for="Low season" value="2-5"}']

          Kind Regards.

          • I'm still stuck. I'm so sorry. I've tried for a few hours now and still can't manage it.

            The below seems fine - ie in High Season (I checked the season name and it's correct), when the user clicks they will block off 8 or 15 days, and will only be able to start the selection from Wednesday. But it doesn't appear to work.

            [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="{season}" for="{High Season}" value="8,15"},{start-day condition="season" for="High Season" value="3"}']

            I checked my booking settings and in Type of days selection in calendar: I have Range days checked, with Select a FIXED number of days with 1 mouse click, Days selection number: 8 and Start day of range: Any day of week

            Thank you for any help, it's much appreciated.

            • Hello.
              Please use this shortcode:

              [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season" value="8,15"}']

              Where "High Season" it's exact name of your season filter.

              Also if you need that your visitor start selections only from Wednesday, so it's possible to define with JavaScript variables before that shortcode:
              <script type="text/javascript"> bk_days_selection_mode = 'fixed'; bk_1click_mode_days_num = 8; // Number of days selection with 1 mouse click bk_1click_mode_days_start = [3]; // { -1 - Any | 0 - Su, 1 - Mo, 2 - Tu, 3 - We, 4 - Th, 5 - Fr, 6 - Sat } </script> [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season" value="8,15"}']

              But please note, this start selections will work for the any days in calendar. In other words it's will be possible to start selections only in high season.

              If you need to have ability to select 8 days in any day and only in the high season to select starting from Wednesday 8 or 15 days.

              Then you need to create 2 season filters. One season filter, where will be only Wednesdays from your high season, let it has name - "High-Season-1". And other season filter where you will have any other week days except the Wednesday - "High-Season-2". You need to create them as days filter by selecting specific days in the Booking > Resources > Filters page.

              Then you will be need to have only this shortcode (with your actual general booking settings):
              [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High-Season-1" value="8,15"},{select-day condition="season" for="High-Season-2" value="0"}']

              • Many thanks for your help. I've found that using two clicks allows me to pick one or two weeks. The annoying thing is if I click Sat the 8th for example and then click on 13th (Wednesday) of week one, it picks as expected the whole week - i.e. Sat 8th to Sat 15th. If though I try that for the second week, i.e I click on Sat the 8th again, but this time choose the second Wednesday the 20th, it deselects the second week and I'm only left with the first week selected (again Sat 8th -15th). It highlights correctly before I click to select (so it looks like both weeks should be chosen) but it doesn't do it. I've used the code below. Is there something I can do to correct this. We're nearly there now... thank you for your help.

                bk_days_selection_mode = 'dynamic';
                bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks
                bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks
                bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7]
                bk_2clicks_mode_days_start = [5]; // { -1 - Any | 0 - Su, 1 - Mo, 2 - Tu, 3 - We, 4 - Th, 5 - Fr, 6 - Sat }

                [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season" value="8,15"},{select-day condition="season" for="Mid High Season" value="8,15"},{select-day condition="season" for="Mid Season" value="8,15"},{select-day condition="season" for="Low Season" value="4,5"}']

                • Hello.
                  You are having wrong understanding about the 2 mouse clicks range days selection.
                  This type of days selection working as follow:
                  you need to click on the first day of selection (check in) and last day of selections (check out). Then all middle days will be selected.

                  • OK, thanks. It's a little misleading though as the weeks get highlighted whilst moving your cursor around and so seem as though clicking would select (and does indeed work for a single week).

                    One last question re the above code. My client is saying that in low season they'd probably want two start days, perhaps Fri and Mon - so they could sell 'short breaks' in low season.

                    Thinking about this I would have thought this was fairly common. How would I amend my above code to be able to do this? Sorry for so much trouble.

                    • Hello.
                      You need to divide your "low season" to 2 seasons: "Low season Mon" and "Low season Fri". As I was suggested in my previous email. And then configure in the booking shortcode days selections for these 2 season filters.

                    • I've tried this (following your example, I created another season filter)....

                      bk_days_selection_mode = 'dynamic';
                      bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7]
                      bk_2clicks_mode_days_start = [5]; // { -1 - Any | 0 - Su, 1 - Mo, 2 - Tu, 3 - We, 4 - Th, 5 - Fr, 6 - Sat }

                      [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season" value="8,15"},{select-day condition="season" for="Mid High Season" value="8,15"},{select-day condition="season" for="Mid Season" value="8,15"},{select-day condition="season" for="Low Season - Fri" value="4"},{select-day condition="season" for="Low Season - Mon" value="5"}']

                      I'm finding that when I hover over Friday it works beautifully and highlights 4 days just as wanted. When I hover over Monday though, no highlight. And when I try and click on a Monday it jumps to the following Friday. I'm sorry, I'm getting a bit confused.

                    • OK... I realised that I should have used bk_2clicks_mode_days_start = [1,5] to pick up the Monday and Friday. Just wondering why {select-day condition="season" for="Low Season" value="4,5"} wouldn't work and negate the need of another season filter?

                      I'm now finding in High Season they can pick Monday (because of above - days start). I don't want that for High Season.

                      What code exactly do I need to start High Season ONLY on a Friday and only be able to book 8/16 days, and then in Low Season be able to choose either a Friday (for four days) or a Monday (for five days). My code below doesn't work in that it allows me to pick Monday's in high season. Could you edit it so it'd work?

                      bk_days_selection_mode = 'dynamic';
                      bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7]
                      bk_2clicks_mode_days_start = [1,5]; // { -1 - Any | 0 - Su, 1 - Mo, 2 - Tu, 3 - We, 4 - Th, 5 - Fr, 6 - Sat }

                      [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season" value="8,15"},{select-day condition="season" for="Low Season-Fri" value="4"},{select-day condition="season" for="Low Season-Mon" value="5"}']

                    • Hello.
                      1) Firstly you define in the JavaScript variables that possible to select the dates only for Mo and Fri. Good.
                      2) Because for the "High Season" you need to have only possible to select starting from Fri, its means that we need to disable selections for Monday, and thats why we need to have the 2 season filters here: "Hight Season-Mon", "High Season-Fri"
                      we will have this parameter in shortcode: {select-day condition="season" for="High Season-Fri" value="8,15"},{select-day condition="season" for="High Season-Mon" value="0"}
                      3) In the Low season we need to have the shortcode like in your description.

                      So final code need to look like this:
                      <script type="text/javascript"> bk_days_selection_mode = ‘dynamic’; bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7] bk_2clicks_mode_days_start = [1,5]; // { -1 – Any | 0 – Su, 1 – Mo, 2 – Tu, 3 – We, 4 – Th, 5 – Fr, 6 – Sat } </script> [booking type=2 form_type='standard' nummonths=1 options='{select-day condition="season" for="High Season-Fri" value="8,15"},{select-day condition="season" for="High Season-Mon" value="0"},{select-day condition="season" for="Low Season-Fri" value="4"},{select-day condition="season" for="Low Season-Mon" value="5"}']

                    • Thank you so much for your help. I will give this a go. As there will be quite a few seasonal filters now (as some cottages may have a Saturday changeover day too and they have four seasons) is there a way I can copy them?

                    • Hello.
                      Unfortunately its does not possible to copy/paste filters.
                      Please retest firstly how tis works with your exist filers, and if everything fine, then create all other.
                      Kind Regards.

                    • Hi, I've tried the below (with newly added Filters) and now it doesn't matter which season I'm in it selects a group of four for any day (isn't 0 any?) I want to say nothing not any here Low Season-Sat" value="0" don't I. How can I do that?

                      bk_days_selection_mode = ‘dynamic’;
                      bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks
                      bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7]
                      bk_2clicks_mode_days_start = [1,5,6]; // { -1 – Any | 0 – Su, 1 – Mo, 2 – Tu, 3 – We, 4 – Th, 5 – Fr, 6 – Sat }

                      [booking type=6 form_type='standard' nummonths=2 options='{select-day condition="season" for="High Season-Sat" value="8,15"},{select-day condition="season" for="High Season-Mon" value="0"},{select-day condition="season" for="High Season-Fri" value="0"},{select-day condition="season" for="Low Season-Fri" value="4"},{select-day condition="season" for="Low Season-Mon" value="5"}, {select-day condition="season" for="Low Season-Sat" value="0"}']

                    • Apologies, 0 is Sunday. But I stil have an issue. I'd like to link the seasons to specific start days. I'm sorry about this. I would have thought fairly common need for holiday lets wanting short break options out of season. Many thanks. Lins

                    • Hello.
                      Sorry I do not understand clearly, what exactly issue do you have.
                      Can you explain it more detail ?
                      Can you send the screenshots of your season filters and link to the page with your description to the support email: support @ wpbookingcalendar.com
                      Kind Regards.

                    • Hello.
                      Sorry, I was wrong in my previous suggestions about the configurations of the several season filters and setting 0 for do not ability to select some days for specific season filter. Sorry.

                      Everything simpler in this configuration.

                      Instead of having several seasons, like "Low Season-Fri" and "Low Season-Mon" you need to have only one "Low Season" and instead of these seson filters "High Season-Mon" and "High Season-Fri" just this general: "High Season".

                      Then in the Booking Calendar shortcode you need to use additional condition for the "start-day".
                      SO in general its can look like this:
                      <script type="text/javascript"> bk_days_selection_mode = 'dynamic'; bk_2clicks_mode_days_min = 4; // Min. Number of days selection with 2 mouse clicks bk_2clicks_mode_days_max = 15; // Max. Number of days selection with 2 mouse clicks bk_2clicks_mode_days_specific = [4,5,15]; // Example [5,7] bk_2clicks_mode_days_start = [1,5]; // { -1 – Any | 0 – Su, 1 – Mo, 2 – Tu, 3 – We, 4 – Th, 5 – Fr, 6 – Sat } </script> [booking type=4 form_type='standard' nummonths=2 options='{select-day condition="season" for="High season" value="8,15"},{start-day condition="season" for="High season" value="1,5"},{select-day condition="season" for="Low season" value="15"},{start-day condition="season" for="Low season" value="5"}']

  6. Hi,
    I have a small lodge which has 4 different types of rooms... and I have 2 rooms of each type

    I have downloaded and added your plugin into my Word press site but I cant seem to work where I change the settings for the following >>> say someone books for a specific date and then another person wants to book on that same date ...It shows up as Booked but I need the second person to be able to also book this same date if needed as I have 2 rooms of each type!!

    Can you please advise where I can change this setting so this will work?

    Thank you

    • Hello.
      This functionality available in the Booking Calendar Business Large version, where possible to make several reservations per specific FULL date(s) by visitors (not time slots). At this version possible to set capacity of the booking resource, that date(s) in calendar will be available until number of reservations is less then capacity of the booking resource. But in this version possible to make bookings only for FULL date, not a time slots (time slots in this version only record data in DB, but not play any logic in booking). Please read more info about the booking resources and how to configure them here https://wpbookingcalendar.com/help/booking-resource/
      You can test how its working in the live demo of that version here https://bl.wpbookingcalendar.com/demo/standard-rooms/ (in this example booking resources with capacity = 6, its mean that you can make 6 bookings per same date in the same calendar).
      You can check all features, that available in the different Booking Calendar versions at this page: https://wpbookingcalendar.com/features/
      Kind Regards.

  7. I set up the booking calendar form with the select times as 12:00 pm - 4:00 pm, 4:00 pm - 8:00 pm, and 8:00 pm - 11:00 pm. When someone books one of these times, the software books it as AM instead of PM. When you mouse over the calendar it also shows AM.
    The field is set up as Select Times:[select* rangetime multiple "12:00 PM - 04:00 PM@@12:00PM - 04:00PM" "04:00 PM - 08:00 PM@@04:00PM - 08:00PM" "08:00 PM - 11:00 PM@@08:00PM - 11:00PM"] .

    I can email pictures if needed.

    We have the small business edition.

    • Hello.
      Please use instead of this shortcode (on the Booking > Settings > Fields page ):
      Select Times:[select* rangetime multiple "12:00 PM - 04:00 PM@@12:00PM - 04:00PM" "04:00 PM - 08:00 PM@@04:00PM - 08:00PM" "08:00 PM - 11:00 PM@@08:00PM - 11:00PM"]
      this shortcode:
      Select Times:[select* rangetime multiple "12:00 PM - 04:00 PM@@12:00 - 16:00" "04:00 PM - 08:00 PM@@16:00 - 20:00" "08:00 PM - 11:00 PM@@20:00 - 23:00"]

  8. Is there a way to enable multiple time slot selections? For now I can only select one.

    • Hello.
      Sorry, it does not possible.
      Instead of timeslots you can use the selection of start time and duration time selection.
      Kind regards.

  9. I am using Version: 9.Business.Large.SingleSite.5.1.2 - paid version.
    First issue:
    I can't find a way to restrict the jQuery datepick in the search form to available days only.
    My customers shouldn't be able to search for resources on Thursdays, Fridays, or Saturdays.
    The calendar on the resource pages represent these unavailable days correctly, but the datepick shows ALL days in the 'still available'-color.

    Second issue:
    My customers are mainly used to the 'dd.mm.yy' date format, but the datepick returns 'yy-mm-dd' only. Changes in the format inside the jQuery('#booking_search_check_in').datepick( within biz_l.php lead to NaN-Errors. Is there a way to display the text as 'dd.mm.yy' without tampering with the value of the variable 'booking_search_check_in'
    I am sure this is not just a minor problem, because it is very confusing for REGULAR USERS of hotel booking sites that ARE NOT USED TO a foreign date format. And especially when day and month are below 10 it is someteimes hard to tell for the customer, if they have even checked the correct date. i.e.: 2014-05-06 could be May 6th of 2014 or June 6th of 2014, all depending on the country where the customer comes from and what format he/she is used to.
    And as already mentioned, our customers are used to something like 6. Mai 2014 or 6. 5. 2014 but I could live with 06.05.2014 as a compromise.

    Any suggestions? I have a few more detailled problems that would be very time-consuming to type in here. Is there a way I can send you a recorded verbal questionnaire as a MP3-file for instance? (I hate taping for hours :-))

    Sincerely, Martin.

    • Hello.

      1) Firstly, please note, if you have some weekdays as unavailbale, even if the visitor select them, these dates will not exist in the search results as available.

      If you still want to set these dates as unavailable in the check in/out datepick fields, then you need to make this fix.

      Please open this file ../booking/inc/biz_l.php

      then find this code:

      function setDaysForCheckOut(date){ var class_day = (date.getMonth()+1) + '-' + date.getDate() + '-' + date.getFullYear(); var additional_class = 'date_available ';
      and replace it to this code:
      function setDaysForCheckOut(date){ var class_day = (date.getMonth()+1) + '-' + date.getDate() + '-' + date.getFullYear(); var additional_class = 'date_available '; for (var i=0; i<user_unavilable_days.length;i++) { if (date.getDay()==user_unavilable_days[i]) return [false, 'cal4date-' + class_day +' date_user_unavailable' ]; }

      Then find this code:
      function applyCSStoDays4CheckInOut(date ){ var class_day = (date.getMonth()+1) + '-' + date.getDate() + '-' + date.getFullYear(); var additional_class = 'date_available ';

      and replace it to this code:

      function applyCSStoDays4CheckInOut(date ){ var class_day = (date.getMonth()+1) + '-' + date.getDate() + '-' + date.getFullYear(); var additional_class = 'date_available '; for (var i=0; i<user_unavilable_days.length;i++) { if (date.getDay()==user_unavilable_days[i]) return [false, 'cal4date-' + class_day +' date_user_unavailable' ]; }

      2) Unfortunately , right now the Booking Calendar support only this date format "2014-05-26". We can not make right noe some hack or trick, because beside the check in/out fields, its connected to the request on the search results. I will add it to the TODO list for fixing in some future updates. Right now, I can suggest that you can write some text help info below or near these fields about format of these dates. Best way that customer just select these dates and do not enter them in the check in/out fields.

      Please note, right now contacting and support possible only in "text" format". Sorry. Please write here if you have any other issues. You can send also screenshots of that issue to the support email support @ wpbookingcalendar.com if its help, but the MP3 files do not allowed. thank you for understanding.
      Kind Regards.