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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
<?php /** * The Template for displaying all single Store. * * @package dokan * @package dokan - 2014 1.0 */ if (!defined('ABSPATH')) : exit; // Exit if accessed directly endif;
global $nasa_opt;
/** * Custom Hook */ do_action('nasa_before_store_dokan');
$store_user = dokan()->vendor->get(get_query_var('author')); $store_info = $store_user->get_shop_info(); $map_location = $store_user->get_location(); $layout = get_theme_mod('store_layout', 'left');
$dokan_appearance = get_option('dokan_appearance');
if (!isset($nasa_opt['dokan_header']) || $nasa_opt['dokan_header'] == '') : $profile_layout = empty($dokan_appearance['store_header_template']) ? 'default' : $dokan_appearance['store_header_template']; else: $profile_layout = $nasa_opt['dokan_header']; endif;
if ($layout === 'no' && $profile_layout == 'ns-1') : $profile_layout = 'default'; endif;
get_header('shop');
if (function_exists('yoast_breadcrumb')) : yoast_breadcrumb('<p id="breadcrumbs">', '</p>'); endif;
do_action('woocommerce_before_main_content'); ?>
<?php if (in_array($profile_layout, array('ns-2', 'ns-3', 'ns-4'))) : dokan_get_template_part('store-header'); endif; ?>
<div class="dokan-store-wrap layout-<?php echo esc_attr($layout); ?> profile-<?php echo esc_attr($profile_layout); ?>"> <?php if ('left' === $layout) : if ($profile_layout == 'ns-1') : echo '<div class="col-left-wrap dokan-col-wrap">'; dokan_get_template_part('store-header'); endif; dokan_get_template_part('store', 'sidebar', array( 'store_user' => $store_user, 'store_info' => $store_info, 'map_location' => $map_location )); if ($profile_layout == 'ns-1') : echo '</div>'; endif; endif; ?>
<div id="dokan-primary" class="dokan-single-store"> <div id="dokan-content" class="store-page-wrap woocommerce" role="main">
<?php if (!in_array($profile_layout, array('ns-1', 'ns-2', 'ns-3', 'ns-4'))) : dokan_get_template_part('store-header'); endif; ?>
<?php do_action('dokan_store_profile_frame_after', $store_user->data, $store_info); ?>
<?php if (have_posts()) : ?>
<div class="seller-items">
<?php woocommerce_product_loop_start(); ?>
<?php while (have_posts()) : the_post(); ?>
<?php wc_get_template_part('content', 'product'); ?>
<?php endwhile; // end of the loop. ?>
<?php woocommerce_product_loop_end(); ?>
</div>
<?php dokan_content_nav('nav-below'); ?>
<?php else : ?>
<p class="dokan-info"><?php esc_html_e('No products were found of this vendor!', 'elessi-theme'); ?></p>
<?php endif; ?> </div>
</div><!-- .dokan-single-store -->
<?php if ('right' === $layout) : if ($profile_layout == 'ns-1') : echo '<div class="col-right-wrap dokan-col-wrap">'; dokan_get_template_part('store-header'); endif; dokan_get_template_part('store', 'sidebar', array( 'store_user' => $store_user, 'store_info' => $store_info, 'map_location' => $map_location )); if ($profile_layout == 'ns-1') : echo '</div>'; endif; endif; ?>
</div><!-- .dokan-store-wrap -->
<?php do_action('woocommerce_after_main_content'); ?>
<?php get_footer('shop');
|