Problem:
The user has created a taxonomy and archive template for it. But it returns 404 on the frontend.
Solution:
It turns out that the user was using a reserved work for the taxonomy slug.
After changing the slug, the issue was resolved. https://codex.wordpress.org/Reserved_Terms
Problem: I have a View of terms filtered by the current post in the loop, nested inside a View of posts. After checking the posts and terms assigned, I can see the results are incorrect.
Solution: Turn off Views caching for the View of terms by adding cached="off" to the View shortcode.
Problem: I have a one-to-many post relationship set up between two post types. On the parent post, I would like to display a View of child posts. On the child post, I would like to display a View of sibling posts.
Solution: On the parent post template, insert a View of the child post type. Add a Query Filter for post relationship, set by the post where the View is shown. In the child post type template, insert a View of the child post type. Add a post relationship Query Filter set by a shortcode attribute "wpvrelatedto". In the View shortcode, pass in the current post's parent post ID using the following format:
[wpv-view name="Your Child View Number 2" wpvrelatedto="[wpv-post-id item='@relationship-slug.parent']"]
Problem: I would like to modify the View's output so that odd and even rows have different markup.
Solution: In classic Views you can use the wrap, index, and pad-last settings to create different markup structures for different rows or iterations of the loop.