Hi, I've been trying to figure this out the last 2 days but I keep going in circles and desperately need help...
I would like to display all my Tutorials on one page but I would like them separated by topic. Below are some examples of the Tutorial Topics:
1.) Sell on Amazon
2.) Sell on eBay
3.) Product Niche Research
4.) Build a Website
5.) SEO Marketing
etc...
And I would like to display a list of tutorials underneath each one of those topics. For example:
1.) Sell on Amazon
a.) Tutorial #1
b.) Tutorial #2
c.) Tutorial #3
d.) Tutorial #4
2.) Sell on eBay
a.) Tutorial #1
b.) Tutorial #2
c.) Tutorial #3
d.) Tutorial #4
3.) Product Niche Research
a.) Tutorial #1
b.) Tutorial #2
c.) Tutorial #3
d.) Tutorial #4
4.) Build a Website
a.) Tutorial #1
b.) Tutorial #2
c.) Tutorial #3
d.) Tutorial #4
5.) SEO Marketing
a.) Tutorial #1
b.) Tutorial #2
c.) Tutorial #3
d.) Tutorial #4
I am all over the place trying to figure out how to set this up. Can someone please give me simplified step-by-step instructions on how to set this up starting with Toolset Post Types > Taxonomies (for that post type) > Post Relationships (if I need to do something with this) > Create VIEW (if needed) > Create ARCHIVE (if needed) > Create CONTENT TEMPLATE (if needed). My mind is going to explode if I keep trying to figure this out. So any help is appreciated.
Thank you,
James
Hello,
I think it is possible within Toolset plugins, and it needs only a post type + a taxonomy, I suggest you try these:
1) Create a post type "Tutorial", in section "Sections to display when editing ", enable option "Page Attributes", when you edit each "Tutorial", you will be able to setup the it's order value in section "Page Attributes".
https://codex.wordpress.org/Function_Reference/register_post_type#supports
2) Create a custom taxonomy "Topics", register to above post type "Tutorial".
3) Setup a nested view:
a) Parent taxonomy view:
- Query terms of taxonomy "topics"
- In view's loop, display term's title and below child view
b) Child post view:
- Query "Tutorial" posts
- Filter by:
Select posts with taxonomy:
"Topics" set by the parent Taxonomy View
- Order by "Menu order"
- in view's loop display "Topics" post information
More help:
https://toolset.com/documentation/user-guides/using-a-child-view-in-a-taxonomy-view-layout/
My issue is resolved now. Thank you!