File: /datos/www/expodubai/wp-content/themes/osapaOld/dokan/store.php
<?php
/**
* The Template for displaying all single posts.
*
* @package dokan
* @package dokan - 2014 1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
$store_user = dokan()->vendor->get( get_query_var( 'author' ) );
$store_info = $store_user->get_shop_info();
$map_location = $store_user->get_location();
get_header( 'shop' );
$page_title = esc_html__( 'Store', 'osapa' );
osapa_breadcrumbs_title(false, true, $page_title,false);
?>
<?php do_action( 'woocommerce_before_main_content' ); ?>
<div class="container">
<div class="row">
<?php if ( dokan_get_option( 'enable_theme_store_sidebar', 'dokan_general', 'off' ) == 'off' ) { ?>
<div id="dokan-secondary" class="dokan-clearfix col-md-3 col-xs-12 dokan-store-sidebar" role="complementary">
<div class="dokan-widget-area widget-collapse">
<?php do_action( 'dokan_sidebar_store_before', $store_user->data, $store_info ); ?>
<?php
if ( ! dynamic_sidebar( 'sidebar-store' ) ) {
$args = array(
'before_widget' => '<aside class="widget">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
);
if ( class_exists( 'Dokan_Store_Location' ) ) {
the_widget( 'Dokan_Store_Category_Menu', array( 'title' => __( 'Store Category', 'osapa' ) ), $args );
if ( dokan_get_option( 'store_map', 'dokan_general', 'on' ) == 'on' && !empty( $map_location ) ) {
the_widget( 'Dokan_Store_Location', array( 'title' => __( 'Store Location', 'osapa' ) ), $args );
}
if ( dokan_get_option( 'contact_seller', 'dokan_general', 'on' ) == 'on' ) {
the_widget( 'Dokan_Store_Contact_Form', array( 'title' => __( 'Contact Vendor', 'osapa' ) ), $args );
}
}
}
?>
<?php do_action( 'dokan_sidebar_store_after', $store_user->data, $store_info ); ?>
</div>
</div><!-- #secondary .widget-area -->
<?php
} else {
get_sidebar( 'store' );
}
?>
<div id="dokan-primary" class="dokan-single-store col-md-9 col-xs-12">
<div id="dokan-content" class="store-page-wrap woocommerce" role="main">
<?php dokan_get_template_part( 'store-header' ); ?>
<?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 _e( 'No products were found of this vendor!', 'osapa' ); ?></p>
<?php } ?>
</div>
</div><!-- .dokan-single-store -->
</div>
</div>
<div class="dokan-clearfix"></div>
<?php do_action( 'woocommerce_after_main_content' ); ?>
<?php get_footer( 'shop' ); ?>