I’m on version 2.7.1, and I’m experiencing something similar. If a category name or a tag name has a space in it, I don’t get any filter results. For me, a slug with a hyphen is no problem at all, but if the actual name has spaces, I get no results.
I worked around this. I just temporarily renamed the categories and tags that I wanted to work with. I put hyphens in place of the spaces. Then after I was done, I removed the hyphens. It worked like a charm.
Another issue was that I couldn’t see pagination. Firebug confirmed that the pagination was there; I just couldn’t see it. So I fixed that issue by changing the styles in the batch-category plugin files.
Caveat: This was a trial-and-error effort on my part. I don’t really know if everything I did was necessary, but now that I can see the pagination, I’m not touching it!
First, I opened admin.php and replaced all instances of
tablenav
with
tablenav-batch
Then I replaced the instance of
tablenav-pages
with
tablenav-pages-batch
Then I opened admin.css and added the following:
.tablenav-batch .tablenav-pages-batch {
cursor:default;
display:block;
float:right;
font-size:11px;
height:30px;
color:#555555;
}
The pagination still looks a little funky, but at least I can see and use it.