_business_variables.php
1 year ago
_template_variables.php
1 year ago
access_not_allowed.php
1 year ago
print_booking_info.php
1 year ago
print_order_info.php
1 year ago
pro_feature.php
1 year ago
process_reschedule_request.php
1 year ago
request_reschedule_calendar.php
4 months ago
print_order_info.php
13 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly |
| 4 | } |
| 5 | ?> |
| 6 | <div class="latepoint-print-summary-w"> |
| 7 | <div class="booking-status-info-wrapper status-<?php echo esc_attr($order->status); ?>"> |
| 8 | <div class="booking-status-icon"></div> |
| 9 | <div class="booking-status-label"><?php echo $order->get_nice_status_name(); ?></div> |
| 10 | <div class="booking-confirmation"><?php echo sprintf(esc_html__('Order #%s', 'latepoint'), '<strong>'.$order->confirmation_code.'</strong>'); ?></div> |
| 11 | </div> |
| 12 | <?php include(LATEPOINT_VIEWS_ABSPATH.'orders/_full_summary.php'); ?> |
| 13 | </div> |