Is there any way to specify the sort order the tags in the Manager when editing a resource? They seem to be sorted by tag id in the comboboxes and autotag lists, which isn't very useful. Even if I re-sort the MySQL table on tag name, they are still listed in id order when editing a resource.
Hi rainbowtiger,
please try this, I had the same wish:
In
core/components/tagger/processors/mgr/extra/gettags.class.php
about row 30
$c->select($this->modx->getSelectColumns('TaggerTag', 'TaggerTag', '', array('tag')));
$c->limit($limit, $start);
add one row:
$c->select($this->modx->getSelectColumns('TaggerTag', 'TaggerTag', '', array('tag')));
$c->sortby('tag','ASC');
$c->limit($limit, $start);
This worked for me.
Hey, and this was my first post here ;-) Hello everyone!