HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamsrent-wp-demo/wp-content/themes/dreamsrent/woocommerce/taxonomy-carcategory.php
<?php

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

global $post;
// get categories
if( function_exists('get_arr_product_ids') ){

	$cat_id = get_arr_product_ids( $post->ID );

	$cat_id_current = apply_filters( 'wpml_object_id', $cat_id, 'woocommerce' );

	$terms = wp_get_post_terms( $cat_id_current, 'product_cat', array("fields" => "all") );

}else{

	$terms = wp_get_post_terms( $post->ID, 'product_cat', array("fields" => "all") );

}


if( $terms ){

	foreach ($terms as $key => $value) {
		$dsrent_cat_dis = get_term_meta($value->term_id, 'dsrent_cat_dis', false);

		if( in_array( 'rental', $dsrent_cat_dis) ){
			wc_get_template( 'rental/archive-product.php' );
			exit();
		}else{
			wc_get_template( 'rental/archive-product.php' );
			
			exit();
		}
	}

}else{
	wc_get_template( 'rental/archive-product.php' );
}