HEX
Server: LiteSpeed
System: Linux server490.bertina.biz 5.14.0-687.31.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Sat Aug 1 05:38:01 EDT 2026 x86_64
User: parskavirpaya (1252)
PHP: 8.1.34
Disabled: mail, show_source, system, shell_exec, passthru, exec, popen
Upload Files
File: /home/parskavirpaya/public_html/wp-content/themes/porto/woocommerce/archive-product.php
<?php
/**
 * The Template for displaying product archives, including the main shop page which is a post type archive
 *
 * @version     8.6.0
 */

defined( 'ABSPATH' ) || exit;

$load_posts_only    = porto_is_ajax() && isset( $_REQUEST['load_posts_only'] );
$is_category_filter = porto_is_ajax() && ! empty( $_REQUEST['is_category_filter'] ) && 'true' == $_REQUEST['is_category_filter'];
if ( ! $load_posts_only || $is_category_filter ) {
	get_header( 'shop' );
}

?>

<?php wc_get_template_part( 'archive-product-content' ); ?>

<?php
if ( ! $load_posts_only || $is_category_filter ) {
	get_footer( 'shop' );
}