File Set order Issue 5.4.1
PermalinkYou can fetch the fileset names and ids from the filesets database table and using the fileset id, you can fetch the fids (image ids) from filesetfiles database table. By using the image id (fid) you can easily get the respective image.
Somewhere in the controller or model getting your dataset, there will be something like:
$fileList = new FileList() $fileList->filterBySet($fs); $fileList->filterByType(FileType::T_IMAGE); $files = $fileList->get();
before the get(), do a:
$fileList->sortByFileSetDisplayOrder();
If the marketplace one, it's possible that the developers haven't updated it to work with the new sorting functionality yet -- in which case you should log a support request with them.