wpdevelop
Forum Replies Created
-
Forum: Reviews
In reply to: [Booking Calendar] Working but outdated and missing many essential featuresHello.
Thank you for sharing your detailed feedback. We appreciate your input and take it seriously when planning new developments. It helps us to better understand your needs and improve the plugin.
Over the past year, we have released many significant updates with new features, UI enhancements, and performance optimizations. You can see an overview of these improvements here: https://wpbookingcalendar.com/wn/.We understand that there are still important features you would like to see, and we want to reassure you that the Booking Calendar continues to evolve. Our upcoming updates will include many new functions and enhancements that will make the plugin even more flexible and user-friendly — some of which address exactly the kind of scenarios you mentioned.
WP Booking Calendar was the very first booking plugin for WordPress, and we remain fully committed to supporting it and continuously improving it. Our goal is to keep it modern, reliable, and feature-rich, while staying attentive to the feedback and requests from our users. Thank you again for your input and for using the Booking Calendar.
More great improvements are on the way!
Kind Regards.Forum: Plugins
In reply to: [Booking Calendar] Regarding Booking Calender licenseHello.
Related the license of the Pro version of Booking Calendar, please contact here https://wpbookingcalendar.com/contact/ or directly via email support @ wpbookingcalendar.com
Please note, this forum is only about the support of Booking Calendar Free version. If you will have any questions about the paid version, then contact here https://wpbookingcalendar.com/contact/
Kind Regards.
Forum: Plugins
In reply to: [Booking Calendar] Redirect to thank you page doesnt work.Great to know that issue is resolved. 🙂
Kind Regards.
Forum: Plugins
In reply to: [Booking Calendar] Redirect to thank you page doesnt work.Hello.
It seems that you are using the old version update 10.10.2 of Booking Calendar. Please update it to the latest update of Booking Calendar 10.14 , it should to resolve your issue.
Because you use Booking Calendar Business Large version you can request the new update of Booking Calendar on this page: https://wpbookingcalendar.com/request-update/Please note, this forum is only about the support of Booking Calendar Free version. If you will have any questions about the paid version, then contact here https://wpbookingcalendar.com/contact/
Kind Regards.
Forum: Plugins
In reply to: [Booking Calendar] Importing appoints via CSVHello.
- Yes, you can include into one .ics feed more than one bookings.
- Find more information at this page: https://wpbookingcalendar.com/faq/what-fields-imported-exported/
Kind Regards.
Forum: Plugins
In reply to: [Booking Calendar] Importing appoints via CSVHello.
Yes, the Booking Calendar can not import the bookings via CSV file, yet.If you want to make your custom soution for importing bookings from the CSV file, then probably you need to check this FAQ: https://wpbookingcalendar.com/faq/booking-calendar-api/
You can use this function: wpbc_api_booking_add_new for creation of the new bookings in the Booking Calendar plugin.
Example:
$booking = array(
'dates' => array( '2027-06-24', '2027-06-24', '2027-06-25', '2027-06-26' ),
'data' => array(
'secondname' => array( 'value' => 'Rika', 'type' => 'text' ),
'name' => 'John',
'email' => array( 'value' => '[email protected]', 'type' => 'email' ),
)
);
$booking_id = wpbc_api_booking_add_new( $booking['dates'], $booking['data'] );Other Example for paid version, where you specified the ID of booking resource (calendar), where to save the booking:
$booking = array(
'dates' => array( '2027-08-24', '2027-08-25', '2027-08-26' ),
'data' => array(
'secondname' => array( 'value' => 'Smith', 'type' => 'text' ),
'name' => 'John',
'rangetime' => array( 'value' => '14:00 - 16:00', 'type' => 'selectbox-one' ),
'email' => array( 'value' => '[email protected]', 'type' => 'email' ),
),
'resource_id' => 3,
);
$booking_id = wpbc_api_booking_add_new( $booking['dates'], $booking['data'], $booking['resource_id'] );Please note, both examples will create a new bookings, only in case if the dates (and times, if provided) is available in destination booking resource (calendar). In case if you want to create a new booking without checking if the dates / times available and create booking in any case, then use the new parameter, like in this example:
$booking = array(
'dates' => array( '2027-08-24', '2027-08-25', '2027-08-26' ),
'data' => array(
'secondname' => array( 'value' => 'Smith', 'type' => 'text' ),
'name' => 'John',
'rangetime' => array( 'value' => '14:00 - 16:00', 'type' => 'selectbox-one' ),
'email' => array( 'value' => '[email protected]', 'type' => 'email' ),
),
'resource_id' => 3,
);
$booking_options = array( 'save_booking_even_if_unavailable' => 1 );
$booking_id = wpbc_api_booking_add_new( $booking['dates'], $booking['data'], $booking['resource_id'], $booking_options );Hope it’s will helpful for you.
Kind Regards.
Hello.
We’ve just released a new update, version 10.13, for Booking Calendar, which includes enhanced phone validation.
The phone fields now automatically detect and format numbers based on the user’s input and user browser locale. For example, if you start typing “+1” for the USA, the field will instantly format to “+1 000 000 0000.” Similarly, typing “+34” for Spain will result in “+34 000 000 0000.” The system automatically identifies phone fields by their name (e.g., “phone”) and applies the correct mask and placeholder. Only valid digits are allowed, and unsupported characters are blocked instantly.
We would be grateful if you would consider updating your review to reflect these improvements.
Kind Regards.
Hello,
Currently, the paid versions of Booking Calendar offer a separate country field and the ability to enter phone numbers with automatic detection of digits in text fields.
For example:
[text* dig_field class:validate_as_digit] – Validates the text field as a digit field.
[text* phone class:validate_digit_9] – Validates a phone number with exactly 9 digits.
[text* zip class:validate_digit_5] – Validates a zip code with exactly 5 digits.I will add the phone field feature into a future update of Booking Calendar, and this will include the free version as well.
Kind Regards.- This reply was modified 10 months, 3 weeks ago by wpdevelop.
Forum: Plugins
In reply to: [Booking Calendar] Need to add Google CaptchaHello.
Currently “Google Captcha” is not supported yet. Sorry.
I will increase priority for this task in our to do list to have this integration of “Google Captcha” in one of closest update of Booking Calendar. Hope it’s will be available soon.
Thank you, for requesting this feature.
Kind Regards.Hello.
1) >> Where in the files is the code that this form submits to?
Please check my previous reply about this function wpbm_ics_import_shortcode
2) Please contact support @ wpbookingcalendar.com about the update, maybe we can find some workaround with the update of your paid version.
Check what’s new in the latest updates of Booking Calendar here: https://wpbookingcalendar.com/wn/
Kind Regards.- From your screenshot, I can see that you are using very old version of Booking Calendar. Please consider to make update of the Booking Calendar to latest update 10.12.2 If you using the paid version, then contact support here support @ wpbookingcalendar.com
- The menu related to my first reply to you located in other place. Please open the oPlugins Panel and then Manage .ics page. Please check the attached screenshot.

Hello.
1) Did you check the points from my “first reply” in this thread, and is your .ics feed (from your shortcode) contains any bookings that was not imported before ?
2) The function that started import located in the file ../wp-content/plugins/booking-manager/core/wpbm-shortcodes.phpand looks like this:
function wpbm_ics_import_shortcode( $attr ) {
…Kind Regards.
Forum: Reviews
In reply to: [Booking Calendar] A Must-Have Booking Plugin with Outstanding SupportHello.
Thank you so much for your feedback! We’re really happy to hear that our plugin is helpful for your website.
Have a great day.Forum: Reviews
In reply to: [Booking Calendar] Fast, thorough and friendly support!Hello.
Thank you, so much for your warm words 🙂
Kind Regards.Forum: Plugins
In reply to: [Booking Calendar] Change availabiityHello.
1) If you need to set as available or unavailable specific dates, then you can do this on the WP Booking Calendar > Availability > Days Availability page. Simply select a range of days on the calendar, choose ‘available’ or ‘unavailable’ status, and click on the Apply button. That’s it.
2) In case if you need to set the different times for the different weekdays , then it’s possible to have the different times selection for the different days in the Booking Calendar Business Medium or higher versions. Please check more here https://wpbookingcalendar.com/overview/#times-week-daysYou can check more info about this configuration at this page https://wpbookingcalendar.com/faq/different-time-slots-selections-for-different-days/ Also you can watch the legacy video about this config here: https://wpbookingcalendar.com/help/different-time-slots-selections-for-different-days/
Kind Regards.