HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/dev.abloc.cc/wwwroot/app/themes/abloc/woocommerce/archive-product.php
<?php
/**
 * The Template for displaying product archives, including the main shop page which is a post type archive
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/archive-product.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see 	    https://docs.woocommerce.com/document/template-structure/
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.0.0
 NM: Modified */

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

// If "shop_load" is set, make sure request is via AJAX
if ( isset( $_REQUEST['shop_load'] ) && nm_is_ajax_request() ) {
	
	if ( 'products' !== $_REQUEST['shop_load'] ) {
		// AJAX filter or search
        wc_get_template_part( 'archive', 'product_nm_ajax_full' );
	} else {
		// AJAX page load
        wc_get_template_part( 'archive', 'product_nm_ajax_products' );
	}
	
} else {
	
    wc_get_template_part( 'archive', 'product_nm' );
	
}