-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoocommerce.php
43 lines (32 loc) · 911 Bytes
/
woocommerce.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
/* the template for woocommerce */
?>
<?php get_header(); ?>
<body <?php body_class(); ?>>
<!-- page header -->
<?php include('pageheader.php') ?>
<!-- content -->
<div id="content"> <!-- page content -->
<section>
<div class="">
<div class="container contentArea">
<div class="row">
<div class="col-md-9 marginTop" id="shopprimary">
<?php woocommerce_breadcrumb(); ?>
<!-- Start the Loop. -->
<?php woocommerce_content(); ?>
<div class="toprated">
<h2>Top Rated Products</h2>
<?php echo do_shortcode("[top_rated_products per_page='3']"); ?>
</div>
</div>
<div class="col-md-3" id="shopsidebar">
<!-- Sidebar -->
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
</section>
</div><!-- end page container -->
<?php get_footer(); ?>