najt
Forum Replies Created
-
Forum: Plugins
In reply to: Plugin: Elegant Category (in)VisibilityThere is one more issue. If you publish a post in multiple categories, and even if one of those categories is “marked” to be hidden, the post will be displayed. I think the default behaviour should be that the post is not displayed if any of the categories it is posted in match. Or maybe an option?
Forum: Plugins
In reply to: Plugin: Elegant Category (in)VisibilityI got it working. In function ecg_is_applicable_page() I changed:
if($key == 'name' || $key == 'p') return FALSE;to
if($key == 'name' || $key == 'p' || $key == 'pagename') return FALSE;Forum: Plugins
In reply to: Plugin: Elegant Category (in)VisibilityI’m mean I don’t get a real 404, but no results are returned. It could be a problem with the SQL query, I’m using MySQL 4.1.8. But looking at the source code it shouldn’t even try filtering single pages.
Forum: Plugins
In reply to: Plugin: Elegant Category (in)VisibilityI’m using the latest, still 404’s on my pages when the plugin is enabled. The frontpage works fine tough (and the excluding of categories). I’ve tried disabling all of my plugins but still get the errors.
Forum: Plugins
In reply to: Plugin: Elegant Category (in)VisibilityWhen I activate this plugin I get 404 Not Found errors on all of my pages.
Forum: Fixing WordPress
In reply to: Avoid “/category/” in URL?And how exactly would Apache know whether /bang/ is a category or a post and rewrite it with the proper url?… it can’t be done without modifying wordpress.