billing-form-fields.php
1 year ago
billing.php
1 year ago
cart.php
10 months ago
checkout-details.php
8 months ago
checkout.php
8 months ago
order-placement-failed.php
8 months ago
order-placement-success.php
8 months ago
order-placement-success.php
44 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Order order placement success template |
| 4 | * |
| 5 | * @package Tutor\templates |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 3.0.0 |
| 9 | */ |
| 10 | |
| 11 | tutor_utils()->tutor_custom_header(); |
| 12 | |
| 13 | $order_status; |
| 14 | $order_id; |
| 15 | ?> |
| 16 | <div class="tutor-container"> |
| 17 | <div class="tutor-order-status-wrapper"> |
| 18 | <div class="tutor-d-flex tutor-flex-column tutor-align-center tutor-gap-4"> |
| 19 | <div class="tutor-order-status-icon"> |
| 20 | <img src="<?php echo esc_attr( tutor()->url . 'assets/images/orders/order-confirmed.svg' ); ?>" alt="<?php esc_html_e( 'order confirmed', 'tutor' ); ?>"> |
| 21 | </div> |
| 22 | |
| 23 | <div class="tutor-order-status-content"> |
| 24 | <h2 class="tutor-fs-4 tutor-fw-medium tutor-color-black tutor-mb-4"> |
| 25 | <?php esc_html_e( 'Order Confirmed', 'tutor' ); ?> |
| 26 | </h2> |
| 27 | <p class="tutor-fs-6 tutor-color-secondary tutor-mb-0"> |
| 28 | <?php echo esc_html( apply_filters( 'tutor_order_placement_success_message', __( 'You will receive an order confirmation email shortly.', 'tutor' ), $order_id, $order_status ) ); ?> |
| 29 | </p> |
| 30 | </div> |
| 31 | </div> |
| 32 | |
| 33 | <div class="tutor-d-flex tutor-gap-2 tutor-align-center tutor-justify-center tutor-flex-wrap"> |
| 34 | <a data-cy="tutor-native-order-history" href="<?php echo esc_url( tutor_utils()->get_tutor_dashboard_page_permalink( 'purchase_history' ) ); ?>" class="tutor-btn tutor-btn-secondary"> |
| 35 | <?php esc_html_e( 'Check Order List', 'tutor' ); ?> |
| 36 | </a> |
| 37 | <a href="<?php echo esc_url( tutor_utils()->course_archive_page_url() ); ?>" class="tutor-btn tutor-btn-primary"> |
| 38 | <?php esc_html_e( 'Continue Shopping', 'tutor' ); ?> |
| 39 | </a> |
| 40 | </div> |
| 41 | </div> |
| 42 | </div> |
| 43 | <?php tutor_utils()->tutor_custom_footer(); ?> |
| 44 |