-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoocommerce.php
95 lines (93 loc) · 4.07 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
// =============================================================================
// INDEX.PHP
// =============================================================================
global $query;
$woo_cnt = "";
$sidebar = "";
$sw = array("left"=>"col-md-3","right"=>"col-md-3","content"=>"col-md-9");
if (defined("HC_PLUGIN_PATH")) {
include(HC_PLUGIN_PATH . "/global-content.php");
$woo_cnt = hc_get_container_template();
if (is_shop() || is_product_category() || is_product_tag()) $sidebar = hc_get_setting('woocommerce-sidebar-shop');
else $sidebar = hc_get_setting('woocommerce-sidebar-single');
$sw = hc_get_sidebars_width($sidebar);
}
get_header();
hc_default_title();
?>
<div <?php post_class("content-parallax woocommerce-cnt " . $woo_cnt . (($sidebar != "") ? " sidebar-content":"")); ?>>
<div class="section-empty">
<div class="container content">
<?php if ($sidebar == "left") { ?>
<div class="row">
<div class="<?php echo esc_attr($sw["left"]) ?> widget">
<?php
if (is_shop() || is_product_category() || is_product_tag()) {
if (is_active_sidebar("woocommerce_shop_left_side_bar")) dynamic_sidebar("woocommerce_shop_left_side_bar");
} else {
if (is_active_sidebar("woocommerce_single_left_side_bar")) dynamic_sidebar("woocommerce_single_left_side_bar");
}
?>
</div>
<div class="<?php echo esc_attr($sw["content"]) ?>">
<?php woocommerce_content() ?>
</div>
</div>
<?php
}
if ($sidebar == "right") {
?>
<div class="row">
<div class="<?php echo esc_attr($sw["content"]) ?>">
<?php woocommerce_content() ?>
</div>
<div class="<?php echo esc_attr($sw["right"]) ?> widget">
<?php
if (is_shop() || is_product_category() || is_product_tag()) {
if (is_active_sidebar("woocommerce_shop_right_side_bar")) dynamic_sidebar("woocommerce_shop_right_side_bar");
} else {
if (is_active_sidebar("woocommerce_single_right_side_bar")) dynamic_sidebar("woocommerce_single_right_side_bar");
}
?>
</div>
</div>
<?php
}
if ($sidebar == "right-left") {
?>
<div class="row">
<div class="<?php echo esc_attr($sw["left"]) ?> widget">
<?php
if (is_shop() || is_product_category() || is_product_tag()) {
if (is_active_sidebar("woocommerce_shop_left_side_bar")) dynamic_sidebar("woocommerce_shop_left_side_bar");
} else {
if (is_active_sidebar("woocommerce_single_left_side_bar")) dynamic_sidebar("woocommerce_single_left_side_bar");
}
?>
</div>
<div class="<?php echo esc_attr($sw["content"]) ?>">
<?php woocommerce_content() ?>
</div>
<div class="<?php echo esc_attr($sw["right"]) ?> widget">
<?php
if (is_shop() || is_product_category() || is_product_tag()) {
if (is_active_sidebar("woocommerce_shop_right_side_bar")) dynamic_sidebar("woocommerce_shop_right_side_bar");
} else {
if (is_active_sidebar("woocommerce_single_right_side_bar")) dynamic_sidebar("woocommerce_single_right_side_bar");
}
?>
</div>
</div>
<?php
}
if ($sidebar == "") {
woocommerce_content();
}
?>
</div>
</div>
</div>
<?php
get_footer();
?>