| Server IP : 192.241.186.36 / Your IP : 216.73.216.164 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/adsonicdigital/wp-content/themes/xstore/dokan/ |
Upload File : |
<?php
/**
* The Template for displaying all reviews.
*
* @package dokan
* @package dokan - 2014 1.0
*/
global $post;
$page_id = wc_get_page_id('shop');
$l = array();
$l['sidebar'] = etheme_get_option('grid_sidebar', 'left');
$l['breadcrumb'] = etheme_get_option('breadcrumb_type', 'left2');
$l['bc_color'] = etheme_get_option('breadcrumb_color', 'dark');
$l['bc_effect'] = etheme_get_option('breadcrumb_effect', 'mouse');
$l['sidebar-mobile'] = etheme_get_option( 'sidebar_for_mobile', 'off_canvas' );
$l['slider'] = false;
$page_breadcrumb = etheme_get_custom_field('breadcrumb_type', $page_id);
$breadcrumb_effect = etheme_get_custom_field('breadcrumb_effect', $page_id);
$page_sidebar = etheme_get_custom_field('sidebar_state', $page_id);
$sidebar_width = etheme_get_custom_field('sidebar_width', $page_id);
$widgetarea = etheme_get_custom_field('widget_area', $page_id);
$slider = etheme_get_custom_field('page_slider', $page_id);
$product_disable_sidebar = etheme_get_custom_field('disable_sidebar');
$l['sidebar-size'] = 3;
if(!empty($page_sidebar) && $page_sidebar != 'default') {
$l['sidebar'] = $page_sidebar;
}
if(!empty($sidebar_width) && $sidebar_width != 'default') {
$l['sidebar-size'] = $sidebar_width;
}
if(!empty($page_breadcrumb) && $page_breadcrumb != 'inherit') {
$l['breadcrumb'] = $page_breadcrumb;
}
if(!empty($breadcrumb_effect) && $breadcrumb_effect != 'inherit') {
$l['bc_effect'] = $breadcrumb_effect;
}
if(!empty($widgetarea) && $widgetarea != 'default') {
$l['widgetarea'] = $widgetarea;
}
if(!empty($slider) && $slider != 'no_slider') {
$l['slider'] = $slider;
}
// Thats all about custom options for the particular page
if(!$l['sidebar'] || $l['sidebar'] == 'without' || $l['sidebar'] == 'no_sidebar') {
$l['sidebar-size'] = 0;
}
if($l['sidebar-size'] == 0) {
$l['sidebar'] = 'without';
}
$l['content-size'] = 12 - $l['sidebar-size'];
$l['sidebar-class'] = 'col-md-' . $l['sidebar-size'];
$l['content-class'] = 'col-md-' . $l['content-size'];
if($l['sidebar'] == 'left') {
$l['sidebar-class'] .= ' col-md-pull-' . $l['content-size'];
$l['content-class'] .= ' col-md-push-' . $l['sidebar-size'];
}
$full_width = etheme_get_option('shop_full_width', 0);
if($full_width) {
$content_span = 'col-md-12';
}
add_filter('etheme_page_config', function($layout) use ($l) {return $l; });
// if( $post->post_type == 'product' ) remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
$vendor = dokan()->vendor->get( get_query_var( 'author' ) );
$vendor_info = $vendor->get_shop_info();
$map_location = $vendor->get_location();
get_header( 'shop' );
?>
<?php do_action( 'woocommerce_before_main_content' ); ?>
<div class="<?php echo (!$full_width) ? 'container' : 'shop-full-width'; ?> sidebar-mobile-<?php echo esc_attr( $l['sidebar-mobile'] ); ?> content-page">
<div class="sidebar-position-<?php echo esc_attr( $l['sidebar'] ); ?>">
<div class="row">
<div id="primary" class="content-area dokan-single-store <?php echo esc_attr( $l['content-class'] ); ?>">
<div id="dokan-content" class="site-content store-review-wrap woocommerce" role="main">
<?php dokan_get_template_part( 'store-header' ); ?>
<div id="store-toc-wrapper">
<div id="store-toc">
<?php
if( ! empty( $vendor->get_store_tnc() ) ):
?>
<h2 class="headline"><?php esc_html_e( 'Terms And Conditions', 'xstore' ); ?></h2>
<div>
<?php
echo wp_kses_post( nl2br( $vendor->get_store_tnc() ) );
?>
</div>
<?php
endif;
?>
</div><!-- #store-toc -->
</div><!-- #store-toc-wrap -->
</div><!-- #content .site-content -->
</div>
<?php
if(!$l['sidebar'] || $l['sidebar'] == 'without' || $l['sidebar'] == 'no_sidebar')// phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf
{}
elseif ( dokan_get_option( 'enable_theme_store_sidebar', 'dokan_general', 'off' ) == 'off' ) {
?>
<div id="dokan-secondary" class="<?php echo esc_attr( $l['sidebar-class'] ); ?> sidebar dokan-clearfix dokan-w3 dokan-store-sidebar sidebar-<?php echo esc_attr( $l['sidebar'] ); ?> <?php echo (etheme_get_option('shop_sidebar_hide_mobile', 0)) ? 'hidden-xs' : '' ; ?>" role="complementary">
<div class="widget-area sidebar-widget">
<?php
if ( ! dynamic_sidebar( 'sidebar-store' ) ) {
$args = array(
'before_widget' => '<div class="sidebar-widget">',
'after_widget' => '</div>',
'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', 'xstore' ) ), $args );
the_widget( 'Dokan_Store_Location', array( 'title' => __( 'Store Location', 'xstore' ) ), $args );
the_widget( 'Dokan_Store_Contact_Form', array( 'title' => __( 'Contact Seller', 'xstore' ) ), $args );
}
}
?>
<?php do_action( 'dokan_sidebar_store_after', $store_user, $store_info ); ?>
</div>
</div><!-- #secondary .widget-area -->
<?php
}else {
get_sidebar( 'store' );
}?>
</div>
</div>
</div><!-- #primary .content-area -->
<div class="dokan-clearfix"></div>
<?php do_action( 'woocommerce_after_main_content' ); ?>
<?php get_footer( 'shop' ); ?>