Created
July 15, 2020 13:59
-
-
Save rashedripon/f0f73213a430fb1bf0ecd6479f6f3410 to your computer and use it in GitHub Desktop.
Hide products when Dokan store is closed by adding store open checker in store.php file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ); | |
if ( function_exists( 'yoast_breadcrumb' ) ) { | |
yoast_breadcrumb( '<p id="breadcrumbs">', '</p>' ); | |
} | |
?> | |
<?php do_action( 'woocommerce_before_main_content' ); ?> | |
<?php dokan_get_template_part( 'store', 'sidebar', array( 'store_user' => $store_user, 'store_info' => $store_info, 'map_location' => $map_location ) ); ?> | |
<div id="dokan-primary" class="dokan-single-store dokan-w8"> | |
<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() && dokan_is_store_open($store_user->get_id()) ) { ?> | |
<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!', 'dokan-lite' ); ?></p> | |
<?php } ?> | |
</div> | |
</div><!-- .dokan-single-store --> | |
<div class="dokan-clearfix"></div> | |
<?php do_action( 'woocommerce_after_main_content' ); ?> | |
<?php get_footer( 'shop' ); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment