File: /mnt/data/dreamsrent-wp/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' );
}