. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 184.94.213.167 / Your IP :
216.73.216.174 [
Web Server : LiteSpeed System : Linux premium282.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : whatdo54321 ( 1549) PHP Version : 8.4.14 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/whatdo54321/y1.bedfun.store/wp-content/plugins/jet-booking/templates/ |
Upload File : |
<?php
/**
* The template for displaying a booking summary to customers.
* It will display in:
* - Thank you page after checkout;
* - Order confirmation email;
* - Review order in My Account > Orders.
*
* This template can be overridden by copying it to yourtheme/jet-booking/booking-summary.php.
*
* @since 3.0.0
* @version 3.7.1
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
?>
<div class="jet-booking-summary">
<div class="jet-booking-summary__number">
<strong><?php printf( __( 'Booking #%s', 'jet-booking' ), $booking->get_id() ); ?></strong>
</div>
<?php if ( ! empty( $booking->get_apartment_unit() ) ): ?>
<div class="jet-booking-summary__unit">
<?php printf( __( 'Unit: %s', 'jet-booking' ), esc_html( jet_abaf()->macros->macros_handler->do_macros( '%booking_unit_title%', $booking ) ) ); ?>
</div>
<?php endif; ?>
<div class="jet-booking-summary__dates">
<div class="jet-booking-summary__date-check-in">
<?php
printf( __( 'Check in: %s', 'jet-booking' ), date_i18n( get_option( 'date_format' ), $booking->get_check_in_date() ) );
if ( ! empty( $booking->get_check_in_time() ) ) {
printf( __( ' - %s', 'jet-booking' ), date_i18n( get_option( 'time_format' ), $booking->get_check_in_time() ) );
}
?>
</div>
<div class="jet-booking-summary__date-check-out">
<?php
printf( __( 'Check out: %s', 'jet-booking' ), date_i18n( get_option( 'date_format' ), $booking->get_check_out_date() ) );
if ( ! empty( $booking->get_check_out_time() ) ) {
printf( __( ' - %s', 'jet-booking' ), date_i18n( get_option( 'time_format' ), $booking->get_check_out_time() ) );
}
?>
</div>
</div>
<?php if ( $booking->get_guests() ) : ?>
<div class="jet-booking-summary__guests">
<?php printf( __( 'Guests: %s', 'jet-booking' ), $booking->get_guests() ); ?>
</div>
<?php endif;
$this->display_booking_additional_services( $booking );
/**
* Fires on render booking summary in order metadata.
* Allows to add any content to booking summary.
*/
do_action( 'jet-booking/wc-integration/order-summary', $booking, $item, $order );
?>
</div>