| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly |
| 4 |
if ( !defined( 'ABSPATH' ) ) exit; |
| 5 |
|
| 6 |
/** |
| 7 |
* What's New section for Booking Calendar 11.1 |
| 8 |
* |
| 9 |
* @param object $obj |
| 10 |
* |
| 11 |
* @return void |
| 12 |
*/ |
| 13 |
function wpbc_welcome_section_11_1( $obj ) { |
| 14 |
|
| 15 |
$section_param_arr = array( 'version_num' => '11.1', 'show_expand' => false ); |
| 16 |
|
| 17 |
$obj->expand_section_start( $section_param_arr ); |
| 18 |
// $obj->asset_path = 'http://beta/assets/'; // TODO: comment this in production. |
| 19 |
?> |
| 20 |
<div class="wpbc_wn_container"> |
| 21 |
|
| 22 |
<div class="wpbc_wn_section"> |
| 23 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Working Time' ) ); ?></h2> |
| 24 |
|
| 25 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 26 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 27 |
<img src="<?php echo esc_attr( $obj->section_img_url( '11.1/wp_booking_calendar_11_1_working_time_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 28 |
</div> |
| 29 |
|
| 30 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 31 |
<ul> |
| 32 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added **Working Time** settings to **Booking Calendar > Availability > General Availability**, allowing administrators to restrict time-based bookings to specific working hours.' ) ); ?></li> |
| 33 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Designed for time-based booking forms**: Working Time applies to booking forms that use **rangetime**, **start/end time**, or **start/duration time** fields.' ) ); ?></li> |
| 34 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Flexible schedule control**: Define default working hours for each weekday, then optionally set custom working time rules for specific booking resources.' ) ); ?></li> |
| 35 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Clear availability timeline**: Time outside working hours is shown in **Time Slots Availability** as read-only unavailable time, with links back to the related Working Time settings.' ) ); ?></li> |
| 36 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Cleaner front-end calendar display**: Dates limited only by Working Time keep their tooltip information, while the calendar avoids showing partial-booking dots when there are no real bookings or manually blocked time slots.' ) ); ?></li> |
| 37 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Better editing workflow**: When opening Working Time settings from the Time Slots Availability timeline, the General Availability page automatically expands and scrolls to the Working Time section.' ) ); ?></li> |
| 38 |
</ul> |
| 39 |
</div> |
| 40 |
</div> |
| 41 |
|
| 42 |
</div> |
| 43 |
<?php |
| 44 |
|
| 45 |
$obj->expand_section_end( $section_param_arr ); |
| 46 |
} |
| 47 |
|
| 48 |
/** |
| 49 |
* What's New section for Booking Calendar 11.0 |
| 50 |
* |
| 51 |
* @param object $obj |
| 52 |
* |
| 53 |
* @return void |
| 54 |
*/ |
| 55 |
function wpbc_welcome_section_11_0( $obj ) { |
| 56 |
|
| 57 |
$section_param_arr = array( 'version_num' => '11.0', 'show_expand' => false ); |
| 58 |
|
| 59 |
$obj->expand_section_start( $section_param_arr ); |
| 60 |
// $obj->asset_path = 'http://beta/assets/'; // TODO: comment this in production. |
| 61 |
?> |
| 62 |
<div class="wpbc_wn_container"> |
| 63 |
|
| 64 |
<div class="wpbc_wn_section"> |
| 65 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Time Slots Availability' ) ); ?></h2> |
| 66 |
|
| 67 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 68 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 69 |
<img src="<?php echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar__availability__time_slots_01.gif' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 70 |
<!-- <img src="--><?php //echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar__availability__time_slots_02.png' ) ); ?><!--" style="margin:10px 0;width:98%;" />--> |
| 71 |
</div> |
| 72 |
|
| 73 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 74 |
<ul> |
| 75 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added the **Time Slots Availability** page under **Booking Calendar > Availability**, allowing administrators to define unavailable time intervals for specific booking resources and date ranges.' ) ); ?></li> |
| 76 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Interactive timeline selection**: Select one or many days directly in the timeline, adjust start and end time, then block or unblock the selected interval.' ) ); ?></li> |
| 77 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Clear availability states**: The timeline now shows available, booked, unavailable, and full-day unavailable states in one place.' ) ); ?></li> |
| 78 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Finer control**: Work with visible time range controls, date range navigation arrows, and slot steps down to **5 minutes**.' ) ); ?></li> |
| 79 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Better long-range editing**: Sticky timeline headers and progress indicators make loading, blocking, unblocking, and saving easier to follow.' ) ); ?></li> |
| 80 |
</ul> |
| 81 |
</div> |
| 82 |
</div> |
| 83 |
|
| 84 |
|
| 85 |
<div class="wpbc_wn_section"> |
| 86 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Set Times Availability Popup' ) ); ?></h2> |
| 87 |
|
| 88 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 89 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 90 |
<img src="<?php echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar_11_0_set_times_availability_popup.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 91 |
|
| 92 |
</div> |
| 93 |
|
| 94 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 95 |
<ul> |
| 96 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added a reusable **Set Times Availability** popup to the Booking Listing page, so unavailable time intervals can be managed without leaving the bookings workflow.' ) ); ?></li> |
| 97 |
<li><img src="<?php echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar__add_booking _from__timeslots__availability_01.gif' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 98 |
<?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Create bookings from selected intervals**: Start a new booking directly from the selected time interval inside the Time Slots Availability popup.' ) ); ?></li> |
| 99 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Works across multiple days**: Select, block, unblock, and review unavailable intervals across a date range with booked and unavailable states visible.' ) ); ?></li> |
| 100 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Unavailable full-day reasons**: The popup can show days blocked by Days Availability, Season Availability, unavailable weekdays, unavailable time from current time, and limit available days from today settings.' ) ); ?></li> |
| 101 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Quick rule links**: Full-day unavailable timeline bars can link to the related availability settings page, helping administrators identify and adjust the rule that made a date unavailable.' ) ); ?></li> |
| 102 |
</ul> |
| 103 |
</div> |
| 104 |
</div> |
| 105 |
|
| 106 |
|
| 107 |
<div class="wpbc_wn_section"> |
| 108 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Faster Add Booking Popup' ) ); ?></h2> |
| 109 |
|
| 110 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 111 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 112 |
<img src="<?php echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar_11_0_add_booking_popup.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 113 |
</div> |
| 114 |
|
| 115 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 116 |
<ul> |
| 117 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added a faster **Add Booking** popup to the Booking Listing and Timeline pages, so users can create bookings without leaving the current view.' ) ); ?></li> |
| 118 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Prefilled from the timeline**: Selected booking resource, date, start time, and end time are passed into the popup when creating a booking from a selected interval.' ) ); ?></li> |
| 119 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Choose the right form in place**: Select the booking resource and custom booking form directly inside the popup.' ) ); ?></li> |
| 120 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Edit in the same workflow**: Existing bookings can be opened in the popup, with a direct link to edit the selected booking form when needed.' ) ); ?></li> |
| 121 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Improved navigation**: The Add Booking page is now available under the Bookings section, and Booking Listing and Timeline include a clearer **New booking** quick-action button.' ) ); ?></li> |
| 122 |
</ul> |
| 123 |
</div> |
| 124 |
</div> |
| 125 |
|
| 126 |
|
| 127 |
<div class="wpbc_wn_section"> |
| 128 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'General Availability Settings' ) ); ?></h2> |
| 129 |
|
| 130 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 131 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 132 |
<img src="<?php echo esc_attr( $obj->section_img_url( '11.0/wp_booking_calendar_11_0_general_availability_settings_01.gif' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 133 |
</div> |
| 134 |
|
| 135 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 136 |
<ul> |
| 137 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added a **General Availability** settings page for defining global front-end availability rules across all calendars and booking resources.' ) ); ?></li> |
| 138 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Live calendar preview**: Review unavailable weekdays, availability limits from the current date, unavailable time from current time, and booking buffer effects before saving.' ) ); ?></li> |
| 139 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Fast settings workflow**: Save changes with AJAX, reset preview controls to defaults, and continue working in the same page layout.' ) ); ?></li> |
| 140 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Consistent admin design**: Uses the shared right-side palette layout from the Availability pages and setup wizard interfaces.' ) ); ?></li> |
| 141 |
</ul> |
| 142 |
</div> |
| 143 |
</div> |
| 144 |
|
| 145 |
|
| 146 |
<div class="wpbc_wn_section"> |
| 147 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Availability Accuracy and Reliability Fixes' ) ); ?></h2> |
| 148 |
|
| 149 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 150 |
<ul> |
| 151 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Fix**: Fixed calendar booking status detection, improving how the front-end calendar reads approved and pending booking statuses for capacity-based resources, including parent/child resources and change-over dates.' ) ); ?></li> |
| 152 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Fix**: Fixed availability calculation for Booking Form Builder forms with time-slot fields, so dates are marked as fully unavailable when all booking form time slots are already booked. (10.15.8.2)' ) ); ?></li> |
| 153 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Fix**: Fixed a fatal error on some hosts by reading the local PRO **meta.json** file directly instead of using WordPress FTP filesystem access.' ) ); ?></li> |
| 154 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Improvement**: Front-end booking form calendars should now reflect real availability more clearly across booked, pending, blocked, and change-over dates.' ) ); ?></li> |
| 155 |
</ul> |
| 156 |
</div> |
| 157 |
</div> |
| 158 |
|
| 159 |
</div> |
| 160 |
<?php |
| 161 |
|
| 162 |
$obj->expand_section_end( $section_param_arr ); |
| 163 |
} |
| 164 |
|
| 165 |
function wpbc_welcome_section_10_15( $obj ) { |
| 166 |
|
| 167 |
$section_param_arr = array( 'version_num' => '10.15', 'show_expand' => ! true ); |
| 168 |
|
| 169 |
$obj->expand_section_start( $section_param_arr ); |
| 170 |
|
| 171 |
// $obj->asset_path = 'http://beta/assets/'; // TODO: comment this in production. |
| 172 |
?> |
| 173 |
<div class="wpbc_wn_container"> |
| 174 |
|
| 175 |
<div class="wpbc_wn_section"> |
| 176 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'New Drag & Drop Booking Form Builder' ) ); ?></h2> |
| 177 |
|
| 178 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 179 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 180 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar__form_builder_overview_02.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 181 |
</div> |
| 182 |
|
| 183 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 184 |
<ul> |
| 185 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Introduced the new **Drag & Drop Booking Form Builder** for visually creating booking forms without manually editing form code.' ) ); ?></li> |
| 186 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Build forms visually**: Drag fields into the canvas, arrange the layout, and see the result instantly in the live preview.' ) ); ?></li> |
| 187 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Faster and easier workflow**: Create modern booking forms without working with complex manual shortcodes.' ) ); ?></li> |
| 188 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Available in all versions**: Booking Calendar now supports **multiple custom booking form configurations** in all versions, including the Free version.' ) ); ?></li> |
| 189 |
</ul> |
| 190 |
</div> |
| 191 |
</div> |
| 192 |
|
| 193 |
|
| 194 |
<div class="wpbc_wn_section"> |
| 195 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Create Booking Forms, Contact Forms, and Inquiry Forms' ) ); ?></h2> |
| 196 |
|
| 197 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 1% 0 0;"> |
| 198 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 199 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar_10_15_contact_inquiry_forms_05.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 200 |
</div> |
| 201 |
|
| 202 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 0 0 1%;"> |
| 203 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 204 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar_10_15_contact_form_preview_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 205 |
</div> |
| 206 |
|
| 207 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 208 |
<ul> |
| 209 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **NEW**: Added support for **Contact Forms / Inquiry Forms / Request Forms** — the calendar is now optional.' ) ); ?></li> |
| 210 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Use Booking Calendar as a contact form alternative**: Create forms without booking dates and manage all submissions inside Booking Calendar.' ) ); ?></li> |
| 211 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Ready-to-use templates**: Start faster with predefined templates for booking, contact, and inquiry forms.' ) ); ?></li> |
| 212 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Flexible start**: Create a form from a template or begin with a blank canvas for full control.' ) ); ?></li> |
| 213 |
</ul> |
| 214 |
</div> |
| 215 |
</div> |
| 216 |
|
| 217 |
|
| 218 |
<div class="wpbc_wn_section"> |
| 219 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Powerful Visual Layout Builder' ) ); ?></h2> |
| 220 |
|
| 221 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 222 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 223 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar__form_builder_02.gif' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 224 |
</div> |
| 225 |
|
| 226 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 227 |
<ul> |
| 228 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Drag & drop fields** from the Fields palette directly into the form canvas.' ) ); ?></li> |
| 229 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Live visual preview** while building and editing the form.' ) ); ?></li> |
| 230 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Rows and columns layout** for clean and structured form designs.' ) ); ?></li> |
| 231 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Nested sections** (up to 5 levels) for advanced multi-row and multi-column layouts.' ) ); ?></li> |
| 232 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Ready section layouts** with 1, 2, 3, or 4 columns.' ) ); ?></li> |
| 233 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Column resizing with visual resizers** for precise control of layout widths.' ) ); ?></li> |
| 234 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Multi-page forms** for creating step-by-step wizard-style booking forms.' ) ); ?></li> |
| 235 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Drag & drop sorting of sections** plus **Move Up / Move Down controls** for faster layout management.' ) ); ?></li> |
| 236 |
</ul> |
| 237 |
</div> |
| 238 |
</div> |
| 239 |
|
| 240 |
|
| 241 |
<div class="wpbc_wn_section"> |
| 242 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Smart Editing and Form Controls' ) ); ?></h2> |
| 243 |
|
| 244 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 1% 0 0;"> |
| 245 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 246 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar_10_15_sidebar_inspector_02.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 247 |
</div> |
| 248 |
|
| 249 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 0 0 1%;"> |
| 250 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 251 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar_10_15_field_limits_02.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 252 |
</div> |
| 253 |
|
| 254 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 255 |
<ul> |
| 256 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Right sidebar inspector**: Easily edit field and section settings in a clear visual interface.' ) ); ?></li> |
| 257 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Field usage limits**: The Builder automatically prevents adding one-time fields, such as the Calendar field, more than once.' ) ); ?></li> |
| 258 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Responsive-friendly column width control** with layout protection for more stable form structure.' ) ); ?></li> |
| 259 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Improved visual editing controls** for easier field, section, and layout management directly inside the canvas.' ) ); ?></li> |
| 260 |
</ul> |
| 261 |
</div> |
| 262 |
</div> |
| 263 |
|
| 264 |
|
| 265 |
<div class="wpbc_wn_section"> |
| 266 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Better Form Management and Reuse' ) ); ?></h2> |
| 267 |
|
| 268 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 269 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 270 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wpbc_11_0_form_management_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 271 |
</div> |
| 272 |
|
| 273 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 274 |
<ul> |
| 275 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Predefined templates:** Start building your new booking form with ready-made templates.' ) ); ?></li> |
| 276 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Save and restore complete form layouts** including pages, sections, columns, and fields.' ) ); ?></li> |
| 277 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Duplicate existing form configurations** to create similar forms much faster.' ) ); ?></li> |
| 278 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Save As workflow**: Create a new form based on an existing layout and settings.' ) ); ?></li> |
| 279 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Flexible form configuration management** for creating, saving, loading, organizing, and previewing custom forms.' ) ); ?></li> |
| 280 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Form details management**: Set a custom form title, slug, description, and image.' ) ); ?></li> |
| 281 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Media library integration** for selecting a custom image for each form configuration.' ) ); ?></li> |
| 282 |
</ul> |
| 283 |
</div> |
| 284 |
</div> |
| 285 |
|
| 286 |
|
| 287 |
<div class="wpbc_wn_section"> |
| 288 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Preview, Import, and Flexible Workflow' ) ); ?></h2> |
| 289 |
|
| 290 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 1% 0 0;"> |
| 291 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 292 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wpbc_11_0_preview_page_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 293 |
</div> |
| 294 |
|
| 295 |
<div class="wpbc_wn_col" style="flex: 1 1 48%;margin: 0 0 0 1%;"> |
| 296 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 297 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.15/wp_booking_calendar_10_15_advanced_mode.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 298 |
</div> |
| 299 |
|
| 300 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 301 |
<ul> |
| 302 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Preview page / live front-end preview**: Test how the form looks and works before publishing it on your website.' ) ); ?></li> |
| 303 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Import existing legacy booking forms** into the new Builder for easier transition to the visual workflow.' ) ); ?></li> |
| 304 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Builder mode and Advanced Form mode**: Work visually or keep manual form configuration when needed.' ) ); ?></li> |
| 305 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Blank form creation in Builder mode** lets you start new forms immediately in the visual editor.' ) ); ?></li> |
| 306 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Section presets** help you insert commonly used layout structures faster.' ) ); ?></li> |
| 307 |
</ul> |
| 308 |
</div> |
| 309 |
</div> |
| 310 |
|
| 311 |
|
| 312 |
<div class="wpbc_wn_section"> |
| 313 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Important Note About the Beta Builder' ) ); ?></h2> |
| 314 |
|
| 315 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 316 |
<ul> |
| 317 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **This feature is currently in Beta** and can still be disabled at any time.' ) ); ?></li> |
| 318 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• To return to the previous legacy booking form configuration, go to **Form Builder > Settings** in the right sidebar and disable the **"Drag & Drop Form Builder"** option.' ) ); ?></li> |
| 319 |
</ul> |
| 320 |
</div> |
| 321 |
</div> |
| 322 |
|
| 323 |
</div> |
| 324 |
<?php |
| 325 |
|
| 326 |
$obj->expand_section_end( $section_param_arr ); |
| 327 |
} |
| 328 |
|
| 329 |
function wpbc_welcome_section_10_14( $obj ){ |
| 330 |
|
| 331 |
$section_param_arr = array( 'version_num' => '10.14', 'show_expand' => true ); |
| 332 |
|
| 333 |
$obj->expand_section_start( $section_param_arr ); |
| 334 |
|
| 335 |
|
| 336 |
// $obj->asset_path = 'http://beta/assets/'; // TODO: 2024-06-01 comment this |
| 337 |
|
| 338 |
|
| 339 |
// <editor-fold defaultstate="collapsed" desc=" = F R E E = " > |
| 340 |
// ----------------------------------------------------------------------------------------------------------------- |
| 341 |
// = F R E E = |
| 342 |
// ----------------------------------------------------------------------------------------------------------------- |
| 343 |
?> |
| 344 |
<div class="wpbc_wn_container"> |
| 345 |
<div class="wpbc_wn_section"> |
| 346 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Control start and end dates for booking and availability' ) ); ?></h2> |
| 347 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 348 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 349 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.14/wp_booking_calendar_elementor_advanced_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 350 |
<span><span style="font-size: 0.9em;font-style: italic;"><?php //echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Available in the Booking Calendar Business Small or higher versions' ) ); ?></span></span> |
| 351 |
</div> |
| 352 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 353 |
<ul> |
| 354 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Control which dates are shown!**: You can now control which dates are shown in the Booking Calendar by using two new shortcode parameters: **[booking resource_id=1 calendar_dates_start=\'2025-01-01\' calendar_dates_end=\'2025-12-31\']**' ) ); ?></li> |
| 355 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **New**: Ability to **set the start and end dates for the calendar** using shortcode parameters. Example: [booking resource_id=1 calendar_dates_start=\'2025-01-01\' calendar_dates_end=\'2025-12-31\' startmonth=\'2025-3\']' ) ); ?></li> |
| 356 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **New**: If startmonth is omitted, the calendar will now automatically use the month from calendar_dates_start as the initial display month. Example: [booking resource_id=1 calendar_dates_start=\'2025-01-01\' calendar_dates_end=\'2025-12-31\']' ) ); ?></li> |
| 357 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **New**: New: You can now **allow users to submit bookings for past dates**, as long as those dates are within the visible range set by calendar_dates_start and calendar_dates_end in the shortcode. Useful for administrative or backdated bookings. Shortcode Example: [booking resource_id=1 calendar_dates_start=\'2025-01-01\' calendar_dates_end=\'2025-12-31\']' ) ); ?></li> |
| 358 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **New**: Elementor native supports of these parameters calendar_dates_start=\'2025-01-01\' calendar_dates_end=\'2025-12-31\' in Advanced section.' ) ); ?></li> |
| 359 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Improvement**: When calendar_dates_start and calendar_dates_end are defined in the shortcode, the system skips checking availability from today, and instead starts from the defined calendar_dates_start.' ) ); ?></li> |
| 360 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Improvement**: To **enable the new Smart Phone Validation** feature introduced in the previous update, go to: WP Booking Calendar > Settings > Booking Form > Form Options and enable the "Smart Phone Validation" option. It is disabled by default.' ) ); ?></li> |
| 361 |
</ul> |
| 362 |
</div> |
| 363 |
</div> |
| 364 |
</div> |
| 365 |
<?php |
| 366 |
|
| 367 |
$obj->expand_section_end( $section_param_arr ); |
| 368 |
} |
| 369 |
|
| 370 |
function wpbc_welcome_section_10_13( $obj ){ |
| 371 |
|
| 372 |
$section_param_arr = array( 'version_num' => '10.13', 'show_expand' => true ); |
| 373 |
|
| 374 |
$obj->expand_section_start( $section_param_arr ); |
| 375 |
|
| 376 |
|
| 377 |
// $obj->asset_path = 'http://beta/assets/'; // TODO: 2024-06-01 comment this |
| 378 |
|
| 379 |
|
| 380 |
// <editor-fold defaultstate="collapsed" desc=" = F R E E = " > |
| 381 |
// ----------------------------------------------------------------------------------------------------------------- |
| 382 |
// = F R E E = |
| 383 |
// ----------------------------------------------------------------------------------------------------------------- |
| 384 |
?> |
| 385 |
<div class="wpbc_wn_container"> |
| 386 |
<div class="wpbc_wn_section"> |
| 387 |
<h2><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Smarter Bookings, Elementor Integration and Cleaner Interface' ) ); ?></h2> |
| 388 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 389 |
<h3><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '**Booking Calendar meets Elementor!**' ) ); ?></h3> |
| 390 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 391 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.13/wp_booking_calendar_elementor_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 392 |
<span><span style="font-size: 0.9em;font-style: italic;"><?php //echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Available in the Booking Calendar Business Small or higher versions' ) ); ?></span></span> |
| 393 |
</div> |
| 394 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 395 |
<ul> |
| 396 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Full Elementor Support!**: Design and customize your booking forms directly inside the Elementor editor—with real-time form previews and a built-in skin selector. No more shortcode guesswork—just drag, configure, and save!' ) ); ?></li> |
| 397 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Calendar Preloader:** We’ve added a smooth-loading preloader bar that prevents layout jumps on slower connections, ensuring a polished experience for your visitors.' ) ); ?></li> |
| 398 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **New Booking Form Template – Service Selection Wizard (Pro):** Perfect for appointment-based bookings: this template features a left-side service selector with a streamlined date/time step for faster, easier bookings.' ) ); ?></li> |
| 399 |
</ul> |
| 400 |
</div> |
| 401 |
</div> |
| 402 |
<hr class="wpbc_hr_dots"><?php // ---------------------------------------------------------------------- ?> |
| 403 |
<div class="wpbc_wn_section"> |
| 404 |
<div class="wpbc_wn_col" style="flex: 1 1 45%;margin: 10px 0;"> |
| 405 |
<h3><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '**Cleaner & More Intuitive Interface**' ) ); ?></h3> |
| 406 |
<ul> |
| 407 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Updated Sidebar Navigation:** All plugin menus now live in a single, collapsible sidebar—easier to navigate and quicker to access.' ) ); ?></li> |
| 408 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Visual Polish & UX Tweaks:** We’ve made subtle design upgrades across the board: improved calendar styling, better visual hierarchy, smarter warnings (e.g., duplicate calendar IDs), and more compact menu visuals in compact mode.' ) ); ?></li> |
| 409 |
</ul> |
| 410 |
</div> |
| 411 |
<div class="wpbc_wn_col" style="flex: 1 1 50%;margin: 0px 0;"> |
| 412 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 413 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.13/vertical_menu_01.png' ) ); ?>" style="margin:10px 0;width:98%;" /> |
| 414 |
<span><span style="font-size: 0.9em;font-style: italic;"><?php //echo wp_kses_post( wpbc_replace_to_strong_symbols( 'Available in the Booking Calendar Business Small or higher versions' ) ); ?></span></span> |
| 415 |
</div> |
| 416 |
</div> |
| 417 |
<hr class="wpbc_hr_dots"><?php // ---------------------------------------------------------------------- ?> |
| 418 |
<div class="wpbc_wn_section"> |
| 419 |
<div class="wpbc_wn_col" style="flex: 1 1 45%;margin: 10px 0;"> |
| 420 |
<h3><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '**Smart Phone Validation**' ) ); ?></h3> |
| 421 |
<ul> |
| 422 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Auto-Detect & Format Phone Fields:** Phone fields now automatically detect and format numbers based on the user’s input and locale. Start typing +1 and the field instantly formats to +1 000 000 0000 (USA); type +34 for Spain and get +34 000 000 0000.' ) ); ?></li> |
| 423 |
</ul> |
| 424 |
</div> |
| 425 |
<div class="wpbc_wn_col" style="flex: 1 1 50%;margin: 0px 0;"> |
| 426 |
<?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?> |
| 427 |
<img src="<?php echo esc_attr( $obj->section_img_url( '10.13/phone_validattion_01.png' ) ); ?>" style="margin:10px auto;max-width:600px;" /> |
| 428 |
</div> |
| 429 |
<div class="wpbc_wn_col" style="flex: 1 1 100%;margin: 0;"> |
| 430 |
<ul> |
| 431 |
<li><?php echo wp_kses_post( wpbc_replace_to_strong_symbols( '• **Built-In Intelligence – No Setup Required** We intelligently detect phone fields by name (e.g., “phone”, “fone”, “tel”, “mobile”, “telefono”, etc.) and apply the right mask and placeholder automatically—no third-party APIs needed. Only valid digits are allowed; unsupported characters are blocked instantly.' ) ); ?></li> |
| 432 |
</ul> |
| 433 |
</div> |
| 434 |
</div> |
| 435 |
|
| 436 |
</div> |
| 437 |
<?php |
| 438 |
|
| 439 |
$obj->expand_section_end( $section_param_arr ); |
| 440 |
} |
| 441 |
|