I'm trying to organize the taxonomy terms output alphabetically in a taxonomy type view that I'm making in the Legacy Views section.
It does this already using bootstrap to output in the loop wizard, but from column to column, which isn't the traditional way to read through an alphabetical list.
I want to show them alphabetically from top to bottom of column 1, then the next terms top to bottom alphabetically into column 2 and 3, etc.
Right now they show up from left to right through the columns, ie. all the A terms going across the top of all the columns, then B's cross left to right and so on.
This is regarding this post of mine, in case this helps any one else,
https://toolset.com/forums/topic/linking-out-to-top-level-only-taxonomy-term-archive-pages-from-a-hub-page/#post-2325751
The code Minesh provided worked great to make the columns, and the links were helpful but I'm still struggling to get the output into top to bottom alphabetical order.
Are there any other examples of this being done that someone could point me to or is there something probably rather obvious that I'm missing from this helpful link from Minesh?
https://stackoverflow.com/questions/40696823/how-to-convert-bootstrap-rows-to-columns-by-viewport-size
Should I be keeping the main code from the Loop Wizard for 4 columns desktop, 3 tablet, and 2 mobile, and then adding the customizations from the link above?
as in just modify the div classes in this code?,
<div class="container wpv-loop js-wpv-loop">
<wpv-loop wrap="4" pad="true">
[wpv-item index=1]
<div class="row ">
<div class="col-md-3 col-sm-4 col-xs-6">
[wpv-taxonomy-title]
</div>
[wpv-item index=other]
<div class="col-md-3 col-sm-4 col-xs-6">
[wpv-taxonomy-title]
</div>
[wpv-item index=4]
<div class="col-md-3 col-sm-4 col-xs-6">
[wpv-taxonomy-title]
</div>
</div>
[wpv-item index=pad]
<div class="col-sm-3"></div>
[wpv-item index=pad-last]
<div class="col-sm-3"></div>
</div>
</wpv-loop>
</div>
Thanks for any pointers or examples they're really appreciated! 🙂
G