If I go to one of my lists, I can use “Add to Your List” to add 1 ot a batch of taxa to my list. Fine. However, the “Find” button will only return a fraction of what there is. Up to 10 items it seems. How can I add a specific taxon which is not on this shortlist? For example: try to add the moth genus “Victoria”! Not the plant (giant waterlilies), but this one https://www.inaturalist.org/taxa/551001-Victoria .
you’re sort of stuck here. unless the page is changed, i think you have to either script in the addition via API or edit the page on the fly. here’s how to do the latter:
go to your list page
click “Add to Your List” and look up any taxon name. select any one of the taxa from the list if more than taxon is returned.
now open up your browser’s developer tools, and go to the Elements view in your developer tools. within Elements view, there should be a tool (in the upper left corner in Edge and Chrome) that will allow you to inspect elements. click that tool, and use it to highlight and click the selected taxon from step 2 above. that should bring you to a spot in the HTML code in the Elements that corresponds to the selected taxon element. from there, look a few lines down to find an <input> element with id="listed_taxon_taxon_id". the flow should be something like this:
Appending URL arguments like this works, but… I’m not sure if it was intentional for the code to allow it so perhaps is not something that should be relied on. Besides which, it’s kind of hard to see amongst all those results.
So, having discovered that, I tried a slightly more useful variant of this that returns fewer results. I cut-and-pasted from the ray-finned fishes page the id# of the parent taxon of the taxon we’re looking for and appended it as a URL parameter &taxon_id=47178 and sure enough, this is accepted and narrows down the results to fish only:
Finally, I realized that the query terms could be left blank, allowing a direct search of the taxon (and all of its children) by id# by just typing &taxon_id=90450 (i.e. the id# for Oman).