| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/v2/commerce/order/details/date.php |
<?php
/**
* Tickets Commerce: Success Order Page Details > Date
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/tickets/v2/commerce/order/details/date.php
*
* See more documentation about our views templating system.
*
* @link https://evnt.is/1amp Help article for RSVP & Ticket template files.
*
* @since 5.1.10
*
* @version 5.1.10
*
* @var \Tribe__Template $this [Global] Template object.
* @var Module $provider [Global] The tickets provider instance.
* @var string $provider_id [Global] The tickets provider class name.
* @var \WP_Post $order [Global] The order object.
* @var int $order_id [Global] The order ID.
* @var bool $is_tec_active [Global] Whether `The Events Calendar` is active or not.
*/
?>
<div class="tribe-tickets__commerce-order-details-row">
<div class="tribe-tickets__commerce-order-details-col1">
<?php esc_html_e( 'Date:', 'event-tickets' ); ?>
</div>
<div class="tribe-tickets__commerce-order-details-col2">
<?php echo esc_html( get_the_date( get_option( 'date_format' ), $order->ID ) ); ?>
</div>
</div>