| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Cart Page |
| 5 |
* |
| 6 |
* This template can be overridden by copying it to yourtheme/woocommerce/cart/cart.php. |
| 7 |
* |
| 8 |
* @see https://docs.woocommerce.com/document/template-structure/ |
| 9 |
* @package WooCommerce\Templates |
| 10 |
* @version 3.8.0 |
| 11 |
*/ |
| 12 |
|
| 13 |
defined( 'ABSPATH' ) || exit; |
| 14 |
|
| 15 |
use UltimateStoreKit\Builder\Builder_Integration; |
| 16 |
use UltimateStoreKit\Builder\Cart_Render; |
| 17 |
|
| 18 |
get_header( 'shop' ); |
| 19 |
|
| 20 |
do_action( 'woocommerce_before_cart' ); |
| 21 |
|
| 22 |
if ( Cart_Render::is_available() ) { |
| 23 |
Cart_Render::render_cart_page( Builder_Integration::instance()->current_template_id ); |
| 24 |
} |
| 25 |
|
| 26 |
do_action( 'woocommerce_after_cart' ); |
| 27 |
|
| 28 |
get_footer( 'shop' ); |
| 29 |
|