Support

Account

Home Forums Add-ons Repeater Field Taxonomy Filtering with Repeater Sub Fields Reply To: Taxonomy Filtering with Repeater Sub Fields

  • @hube2 Thanks for the reply. I ended up converting the taxonomy into categories and changing the taxonomy.php to a category-slug.php page. Like the code below. It seems to filter for the category. Only problem now is the pagination doesn’t work properly. Every page/* gives me a 404 that I can’t seem to figure out. I appreciate the response.

    
    $cat_id = get_query_var('cat');
    
            $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
            
            $args = array(
                'posts_per_page'	=> 3,
                'post_type'		=> 'shop',
                'suppress_filters' => false,
                "meta_key" => "",
                "orderby" => "meta_value_num",
                "order" => "desc",
                "paged" => $paged,
                'meta_query' => array(
                    array(
                        'key' => 'hotspot_repeater_$_hotspot_category',
                        'compare' => 'LIKE',
                        'value' => array($cat_id),
                    )
                )
            );