0
votes
2answers
93 views

404 Error On Custom Taxonomy Pages 2, 3, etc

I've been reading a bunch of posts about this with no luck so far. I can't seem to figure out what is the problem. I have the following: Custom Post Type: Sermons Custom Taxonomy: Series My urls ...
0
votes
1answer
88 views

Custom taxonomy page returns 404

Ive created a custom post type and a custom taxonomy. I can create new posts and assign those taxonomies, but it returns a 404 when I go to mydomain.com/mycustomtaxonomy/termslug Here is my code: ...
0
votes
1answer
192 views

Safe to throw 404 error in request filter?

I am working on a plug-in for my personal site and I would like it have a certain permalink structure (/projects/project-type/sub-type/project). To achieve this, I am using the request filter. Inside ...
0
votes
1answer
97 views

What is the permalink structure for custom taxonomy? [closed]

I have a custom post type called d-questions, and a taxonomy called q-categories with a term called books. The problem is that I can not find the right URL to get the list of post belonging to the ...
0
votes
1answer
363 views

either single-{custom}.php 404's OR /taxonomy/ 404's - custom post type and taxonomy permalinks

I've been playing around with custom post types and taxonomies and banging my head off walls on numerous occasions now - I believe I've read every forum on the internet on how to solve various issues ...
0
votes
1answer
458 views

Pagination throws 404 error on custom taxonomy archive pages

I have created a custom taxonomy for a custom post type called "portfolio" like so: function jvs_portfolio_categories_init() { register_taxonomy( 'project-category', 'portfolio', ...
0
votes
2answers
597 views

Custom Permalink with Dynamic Taxonomy for Custom Post Type - Works, but breaks other permalinks

My custom permalink with dynamic taxonomy is working for my custom post type. However, it breaks all my other permalinks. They display a 404 error in the content area (header and sidebar still ...
0
votes
1answer
293 views

404 Error on Custom Post Type / Custom Taxonomy

I have a registered post type with 'rewrite' set as slug=>cpt_name, with_front=>true. register_post_type( 'objection_handling', array( ...
0
votes
2answers
317 views

Custom Post Type Taxonomy Permalinks [closed]

I am having a very specific issue on permalinks. I have a custom post type and a taxonomy. Using the function below sorted out the correct structure of the taxonomy permalinks. function ...
0
votes
3answers
1k views

Category page for custom-taxonomy shows 404 when using custom permalink structure

I'm having a small issue with category pages for a custom taxonomy when custom permalinks are used, and I was wondering if someone might be able to help out and point out where I'm going wrong. I've ...
0
votes
1answer
226 views

Custom nested taxonomies pagination problem [closed]

I'm experiencing a problem with the pagination of my custom taxonomies which lead to a 404 instead of the taxonomy-product_brand.php template Here is some code: ...
0
votes
4answers
348 views

Pagination throws 404

I'm experiencing some problems with my pagination when displaying custom post types. I would like to display 9 posts and then display a numeric pagination. This is working, some links are generated ...
0
votes
1answer
695 views

custom post type and custom taxonomy url conflict

I have custom post type called paintings and it has a custom taxonomy called paintings_category. Currently I have this situation: example.com/paintings/ A page using page-paintings.php ...
0
votes
2answers
444 views

Permalink Problems

I am having a problem. I am running WP 3.05 with one custom taxonomy. Here is the code to create the taxonomy: function create_property_taxonomies() { // Add new taxonomy, make it hierarchical ...