| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template variables: |
| 4 |
* |
| 5 |
* @var $controllers array Widgets/Addons Settings |
| 6 |
* @var $checkout Object WC()->checkout() |
| 7 |
*/ |
| 8 |
|
| 9 |
// Do not allow directly accessing this file. |
| 10 |
if ( ! defined( 'ABSPATH' ) ) { |
| 11 |
exit( 'This script cannot be accessed directly.' ); |
| 12 |
} |
| 13 |
?> |
| 14 |
<div class="rtsb-checkout-order-review"> |
| 15 |
<?php if( ! empty( $controllers['show_title'] ) ){ ?> |
| 16 |
<h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'shopbuilder' ); ?></h3> |
| 17 |
<?php } ?> |
| 18 |
|
| 19 |
<?php do_action( 'woocommerce_checkout_before_order_review' ); ?> |
| 20 |
|
| 21 |
<div id="order_review" class="woocommerce-checkout-review-order"> |
| 22 |
<?php woocommerce_order_review(); ?> |
| 23 |
</div> |
| 24 |
|
| 25 |
<?php do_action( 'woocommerce_checkout_after_order_review' ); ?> |
| 26 |
|
| 27 |
</div> |
| 28 |
|