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),
)
)
);
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.