I'd like to get rid of the "There are currently no posts in this category." phrase which pops up in taxonomy pages for certain categories.
let's say I have a taxonomy set up as
vocabulary: category
terms:
publications
--books
--magazines
programs
--lectures
--symposia
we've neatly set up the pages (we use clean urls) to be
thesite.org/publications/books
thesite.org/publications/magazines
and so on.
we will only post in subterms (e.g. books, magazines, never in publications by itself).
Using taxonomy.context module, i've done a neat job of adding descriptions to all the terms.
i want it to be possible for the user to go to thesite.org/publications and see the following.
publications
description text here from taxonomy.context module
books
description text here from taxonomy.context module
magazines
description text here from taxonomy.context module
now this works very well...
except for the note at the bottom:
"There are currently no posts in this category."
This will make the site seem like a kludge.
I can do the whole thing with php snippets, but I want to avoid doing that. Once I'm done with the site, I want to give it to someone else, that'll be a lot more to explain.
I can do the whole thing with hand code, but that too is something I'd like to avoid.
Any way to get rid of that? I don't really care if I get rid of it throughout all pages for good...