1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?php /* Template name: Page Checkout Use this for Cart, Checkout and thank you page. */ get_header(); ?>
<div class="page-wrapper page-checkout"> <div class="row"> <div id="content" class="large-12 columns" role="main">
<?php while ( have_posts() ) : the_post(); ?> <?php if(function_exists('is_wc_endpoint_url')){ ?> <?php if (!is_wc_endpoint_url('order-received')){ ?> <div class="checkout-breadcrumb"> <h1> <span class="title-cart"><?php _e('Shopping Cart', 'flatsome'); ?></span> <span class="icon-angle-right divider"></span> <span class="title-checkout"><?php _e('Checkout details', 'flatsome'); ?></span> <span class="icon-angle-right divider"></span> <span class="title-thankyou"><?php _e('Order Complete', 'flatsome'); ?></span> </h1> </div> <?php } ?> <?php } else { ?> <div class="checkout-breadcrumb"> <h1> <span class="title-cart"><?php _e('Shopping Cart', 'flatsome'); ?></span> <span class="icon-angle-right divider"></span> <span class="title-checkout"><?php _e('Checkout details', 'flatsome'); ?></span> <span class="icon-angle-right divider"></span> <span class="title-thankyou"><?php _e('Order Complete', 'flatsome'); ?></span> </h1> </div> <?php } ?>
<?php the_content(); ?> <?php endwhile; // end of the loop. ?>
</div><!-- end #content large-12 --> </div><!-- end row --> </div><!-- end page-right-sidebar container -->
<?php get_footer(); ?>
|