MOON
Server: Apache
System: Linux server.netcommlabs.in 3.10.0-1160.83.1.el7.x86_64 #1 SMP Wed Jan 25 16:41:43 UTC 2023 x86_64
User: dermova (1051)
PHP: 5.4.45
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/dermova/www/india/wp-content/themes/ri-colias/woocommerce/archive-product.php
<?php
/**
 * The Template for displaying product archives, including the main shop page which is a post type archive.
 *
 * Override this template by copying it to yourtheme/woocommerce/archive-product.php
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

get_header( 'shop' );

global $post,$sidebar_left,$sidebar_right;

rit_sidebar_config();

$class_main='col-sm-12 col-md-12';

if($sidebar_left && $sidebar_right ){
    $class_main = 'col-sm-12 col-md-6';
} elseif ($sidebar_right || $sidebar_left){
    $class_main = 'col-sm-12 col-md-9';
} else{
    $class_main = 'col-sm-12 col-md-12';
}
?>

	<?php
		do_action( 'woocommerce_before_main_content' );
	?>
        <?php
            /**
            * Check if WooCommerce is active
            **/
            if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { ?>
            <div class="wrap-breadcrumb">
                <nav class="breadcrumb">
                    <?php woocommerce_breadcrumb(); ?>
                </nav>
                <!-- /.breadcrumb -->
            </div>
            <!-- /.wrap-breadcrumb -->
        <?php }?>

        <div class="row">
            <?php get_sidebar('left'); ?>
            <div class="content-product <?php echo esc_attr($class_main);?>">
                <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
                    <div class="page-title">
                        <h1><?php woocommerce_page_title(); ?></h1>
                    </div>

                <?php endif; ?>

                <div class="archive_product_description">
                    <?php do_action( 'woocommerce_archive_description' ); ?>
                </div>
                <div class="archive_product_info">
                    <?php if ( have_posts() ) : ?>
                    <div class="top-products clearfix">
                        <?php
                            do_action( 'woocommerce_before_shop_loop' );
                        ?>
                    </div>
                    <?php woocommerce_product_loop_start(); ?>

                        <?php woocommerce_product_subcategories(); ?>

                        <?php while ( have_posts() ) : the_post(); ?>

                            <?php wc_get_template_part( 'content', 'product' ); ?>

                        <?php endwhile; // end of the loop. ?>

                    <?php woocommerce_product_loop_end(); ?>

                    <?php
                        /**
                         * woocommerce_after_shop_loop hook
                         *
                         * @hooked woocommerce_pagination - 10
                         */
                        do_action( 'woocommerce_after_shop_loop' );
                    ?>

                <?php elseif ( ! woocommerce_product_subcategories( array( 'before' => woocommerce_product_loop_start( false ), 'after' => woocommerce_product_loop_end( false ) ) ) ) : ?>

                    <?php wc_get_template( 'loop/no-products-found.php' ); ?>

                <?php endif; ?>
                </div>
            </div>
            <?php get_sidebar('right'); ?>
        </div>
	<?php
		do_action( 'woocommerce_after_main_content' );
	?>



<?php get_footer( 'shop' ); ?>