-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-carro.php
43 lines (36 loc) · 1.08 KB
/
page-carro.php
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
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
get_header();
?>
<div id="pascal-cart">
<div id="pascal-cart-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>
<?php the_title(); ?>
<a class="bt-site bt-site-yellow pull-right" href="<?php echo get_site_url(); ?>">Seguir comprando</a>
</h1>
</div>
</div>
</div>
</div>
<div id="pascal-cart-body">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php
echo do_shortcode('[woocommerce_cart]')
?>
</div>
</div>
</div>
</div>
</div>
<?php
get_footer();
?>