default.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | defined('ABSPATH') || exit; |
| 4 | |
| 5 | ?> |
| 6 | |
| 7 | <div class="shopengine-checkout-payment"> |
| 8 | <?php |
| 9 | |
| 10 | if(!empty(WC()->cart) && !WC()->cart->is_empty()) { |
| 11 | |
| 12 | woocommerce_checkout_payment(); |
| 13 | |
| 14 | } elseif(get_post_type() == \ShopEngine\Core\Template_Cpt::TYPE) { |
| 15 | |
| 16 | echo esc_html__('Your cart is empty, please add some simple product in cart and then come back to editor to see checkout page.', 'shopengine'); |
| 17 | } |
| 18 | |
| 19 | ?> |
| 20 | </div> |
| 21 | |
| 22 |