HEX
Server: nginx/1.18.0
System: Linux iZj6c1ieg2jrpk1z5tzi19Z 6.3.9-1.el7.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 21 22:18:40 EDT 2023 x86_64
User: www (1001)
PHP: 8.2.4
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.cytocare.cn/wp-content/themes/peakshops/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' );

$shop_product_listing_fullwidth = ot_get_option( 'shop_product_listing_fullwidth', 'off' );

$classes[] = 'row';
$classes[] = 'on' === $shop_product_listing_fullwidth ? 'full-width-row' : false;
?>
<?php do_action( 'woocommerce_before_main_content' ); ?>
<div class="<?php echo esc_attr( implode( ' ', $classes ) ); ?>">
	<div class="small-12 columns">
		<div class="sidebar-container thb-shop-sidebar-layout sidebar-left">
			<?php
			dokan_get_template_part(
				'store',
				'sidebar',
				array(
					'store_user'   => $store_user,
					'store_info'   => $store_info,
					'map_location' => $map_location,
				)
			);
			?>
			<div class="sidebar-content-main thb-shop-content">
				<div id="dokan-primary" class="dokan-single-store">
						<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 esc_html_e( 'No products were found of this vendor!', 'dokan-lite' ); ?></p>

								<?php } ?>
						</div>

				</div><!-- .dokan-single-store -->
				<?php do_action( 'woocommerce_after_main_content' ); ?>
			</div>
		</div>
	</div>
</div>
<?php
get_footer( 'shop' );