Say you have a blog with a lot of content. You've been categorizing your posts with taxonomy terms to keep them organized. How can you curate the order of content seen on term pages?
We're going to use draggable views to do this: https://www.drupal.org/project/draggableviews
By default, the taxonomy term page is a view that lists any content that uses the term, sorted by post date. We're going to create an additional view to sort the list manually and apply this to the regular view.
- Edit the Taxonomy term view.
- Create a new page view display, called Sort order.
- Set the url to /taxonomy/term/%term/sort-order, which uses the default taxonomy term path with /sort-order appended.
- Set the display format to table.
- Make sure you select For: This page (override), since we only want it on this display.
- Add Title and Draggableviews Content fields.
- Select For: This page(override)
- Remove sticky and date created sorts.
- Select For: All displays.
- Add Draggableviews Weight to sort order.
- Select For: All displays.
- Remove header and pager
- Select For: This page(override)
Now you should have your listing set to the same order.