You've already forked wc-bootstrap
19 lines
516 B
Twig
19 lines
516 B
Twig
|
|
{#
|
||
|
|
# Order Received Message (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Short confirmation text displayed on the thank-you page.
|
||
|
|
# HPOS compatible: no $post global, uses WC_Order methods only.
|
||
|
|
#
|
||
|
|
# Expected context:
|
||
|
|
# order - WC_Order object (optional)
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: checkout/order-received.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
<p class="woocommerce-notice woocommerce-notice--success woocommerce-thankyou-order-received mb-0">
|
||
|
|
{{ __('Thank you. Your order has been received.') }}
|
||
|
|
</p>
|