wxyjp
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Yes, I can see it’s working now!
Thank you Anmari for quick response and support!I checked all checkbox for roles at the above example page, but it return the result for only Subscriber. Doesn’t it expect multiple values?
Hello, I’m planing to add multiple selection filter using checkbox. I’m happy to hear any progress for this subject.
@arudd: I had a similar problem. Are you listing categories and taxonomies in custom post type archive page? If so, you may need to designate your post type. Try this fix to the core.php.
core.php line 107-111
$query_vars = array_merge( $query_vars, array( 'fields' => 'ids', 'qmt_count' => true, 'nopaging' => true ) );to
$query_vars = array_merge( $query_vars, array( 'fields' => 'ids', 'qmt_count' => true, 'nopaging' => true, 'post_type' => get_post_type() ) );thanks! your idea saved me a lot!
at the count function in walkers.php,
i fixed this line (58,59)'include_children' => 0, 'operator' => 'AND'to
'include_children' => true, 'operator' => 'IN'counts of parent terms will include their child terms count.
it works with me.
Viewing 5 replies - 1 through 5 (of 5 total)