PluginProbe
Booking Calendar / 11.8.4
Booking Calendar v11.8.4
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
← All changes | core/class/wpbc-class-welcome.php +15 -4 10.15.611.8.4 View file →
@@ -275,9 +275,9 @@
275 275 <div style="display: flex;flex-flow: row wrap;justify-content: center;gap: 2em;margin: 3em 0 1em;">
276 276 <a class="button button-primary"
277 277 href="<?php
278 278 echo esc_url( wpbc_get_bookings_url() . '&tab=vm_booking_listing' ); ?>"
279 - style="font-size: 20px;padding: 0.15em 1.5em;"><?php
279 + style="font-size: 20px;padding: 0 1em;height: 44px;line-height: 40px;"><?php
280 280 esc_html_e( 'Go to Booking Admin Panel', 'booking' ); ?></a>
281 281 <?php
282 282 $wpbc_starter_pages = function_exists( 'wpbc_get_published_activation_booking_pages' ) ? wpbc_get_published_activation_booking_pages() : array();
283 283 if ( ! empty( $wpbc_starter_pages ) ) {
@@ -283,9 +283,9 @@
283 283 if ( ! empty( $wpbc_starter_pages ) ) {
284 284 foreach ( $wpbc_starter_pages as $wpbc_starter_page ) {
285 285 ?>
286 286 <a class="button button-secondary"
287 - style="font-size: 20px;padding: 0.15em 1em;"
287 + style="font-size: 20px;padding: 0 1em;height: 44px;line-height: 40px;"
288 288 href="<?php
289 289 echo esc_url( $wpbc_starter_page['url'] ); ?>"
290 290 ><?php
291 291 echo esc_html( $wpbc_starter_page['button_title'] ); ?></a>
@@ -291,13 +291,13 @@
291 291 echo esc_html( $wpbc_starter_page['button_title'] ); ?></a>
292 292 <?php
293 293 }
294 294 } else {
295 - $wp_post_booking_absolute = wpbc_stp_wiz__is_exist_published_page_with_booking_form();
295 + $wp_post_booking_absolute = false;
296 296 if ( ! empty( $wp_post_booking_absolute ) ) {
297 297 ?>
298 298 <a class="button button-secondary"
299 - style="font-size: 20px;padding: 0.15em 1em;"
299 + style="font-size: 20px;padding: 0 1em;height: 44px;line-height: 40px;"
300 300 href="<?php
301 301 echo esc_url( $wp_post_booking_absolute ); ?>"
302 302 ><?php
303 303 esc_html_e( 'Go to page with booking form', 'booking' ); ?></a>
@@ -319,8 +319,18 @@
319 319 $this->maintence_section();
320 320
321 321 $this->section_9_8_css();
322 322
323 + wpbc_welcome_section_11_8_1( $this );
324 + wpbc_welcome_section_11_8( $this );
325 + wpbc_welcome_section_11_7( $this );
326 + wpbc_welcome_section_11_6( $this );
327 + wpbc_welcome_section_11_5( $this );
328 + wpbc_welcome_section_11_4( $this );
329 + wpbc_welcome_section_11_3( $this );
330 + wpbc_welcome_section_11_2( $this );
331 + wpbc_welcome_section_11_1( $this );
332 + wpbc_welcome_section_11_0( $this );
323 333 wpbc_welcome_section_10_15( $this );
324 334 wpbc_welcome_section_10_14( $this );
325 335 wpbc_welcome_section_10_13( $this );
326 336
@@ -371,8 +381,9 @@
371 381 }
372 382
373 383
374 384 function section_img_url( $relative_path_to_img ) {
385 +
375 386 return esc_url( $this->asset_path . $relative_path_to_img );
376 387 }
377 388
378 389