I've got a HUGE taxonomy terms collection and Drupal core's re-arrangement fails because of https://www.drupal.org/node/2806551
(page size is set to 100, but it will load ALL sub terms and form will not get submitted and new weight order will not get saved).

Taxonomy manager at least splits terms by levels and re-ordering might be a bit easier?

Comments

jannakha created an issue.

david radcliffe’s picture

I would also like this feature. I have a taxonomy with 735 terms, and I am not able to reorder the terms in the UI.

In my case, since I had originally added the terms in the correct order, I was able to solve the problem by setting the weight equal to the term id, via the following SQL query:

update taxonomy_term_field_data set weight=tid;

But there ought to be a quick and convenient way to reorder large taxonomies in the UI.