Edit the plugin (/wp-admin/plugin-editor.php?file=wp-filters/filters.php)
Search for $cats = get_categories("get=all");
Replace with $cats = get_categories(array('type' => 'my-taxonomy-name'));
(where ‘my-taxonomy-name’ is the name of your taxonomy)
When I click on “All”, the page jumps to the top,
which is strange, because when I click on other categories it doesn’t happen.
Please help!
In case I do not want to show too many posts can this have a pagination to keep the post count display low?
Thank you ??
]]>I use custom taxonomies allot and would love to see it filtering them.
Any idea how to do it myself?
Thanks!
]]>Impressive plugin!
I would love to use it but there is a little problem about it.
The thing that bothers me is the big list of unordered categories and subcategories being displayed all the time in one line, regardless of selected category.
I have more than 30 categories including subcategories, so having this unordered list of “all of them” at all the time is a bit annoying.
The way I see it as best solution would be to display only “subcategories” of CURRENT selected category or all available categories/subcategories of current loop.
example:
If the selected category or the loop is “Category 1”, then to display as filter options all and only subcategory 1,2,3 of Cat 1 or current loop. If the loop is “custom taxonomy” or even master loop then to display only all available categories without subcategories.
Here is a peace of code I found to display only all available subcategories of selected category:
<?php if (is_category()) {
$this_category = get_category($cat);
if (get_category_children($this_category->cat_ID) != "") {
echo "<h1>SUBCATEGORIES</h1>";
echo "<ul>";
wp_list_categories('orderby=id&show_count=0&title_li=
&use_desc_for_title=1&child_of='.$this_category->cat_ID);
echo "</ul>";
}
} ?>
Hope it can be modified and implemented, but if not, at least to have them ordered and displayed in proper way would be a great solution and it would make so many users happier. For example:
Category 1
– Subcategory 1
– Subcategory 2
Category 2
– subcategory 1
– subcategory 2
etc…
Hope u find this helpful and useful.
Cheers!
]]>Hello. I was wondering if this plugin is causing a conflict with shadowbox.
Here is the page I am using the plugin on: https://motion-master-templates.com/test-page-2
Just click on any of the thumbnails and you may see that shadowbox does not work.
Here is the main page where shadowbox works: https://motion-master-templates.com
Any idea on how I may fix this?
Thank you very much ??
]]>Hello Anna.
I was wondering if there is a way I can add a drop down to sub-categories button.
Instead of having a whole mess of buttons I wanted to have button that reads “Software” and under that have the different versions.
Here is my test page: https://motion-master-templates.com/test-page-2#category-member-templates
Thank you ??
]]>Hello I wanted know how I can find what I need to add in the posts container blank?
Also, can the filter results show my excerpts?
Here is the page I am testing this plugin with: https://motion-master-templates.com/test-page-2
Thank you ??
]]>I’m trying to follow the instructions here: https://gobanana.ca/wp-filters
It says I should wrap my posts in a post wrapper and then assign each post to a class like this:
<div id="postswrapper">
<div id="post-1" class="post category-1 category-2 category-3">[Post content here]</div>
<div id="post-2" class="post category-3 category-4 category-1">[Post content here]</div>
<div id="post-3" class="post category-7 category-a category-5">[Post content here]</div>
<div id="post-4" class="post category-1 category-2 category-3">[Post content here]</div>
</div>
So in [post content here] I need to place what exactly…
Sorry for the noob question.
]]>Worked perfectly and just what I needed. Looking forward to new version with taxonomy support : )
]]>Hi – I installed your plugin on my blog, but the categories don’t seem to be appearing when I click the filters: https://robbietilton.com/
I’m using the latest version of wordpress and the only other plugin i’m using is infinite-scroll.
I’ve also placed the php “<?php filters_generate(); ?>” in my header.php and went into the setting and checked/saved all my existing categories.
Please let me know if you think you might know what might be wrong. This plugin looks fantastic and I hope to get it working soon.
Thanks so much!!!
]]>I like this plugin, but it is useless, unles you have a bunch of posts on the main site of your blog. If you have only 5 or less, it filters only these.
How can this be improved, to filter and show all posts from specific category?
]]>