Sort page in panel, featured first then normal order

Auto-reply because I figured it out : You don’t have to use the num: field but you can combine and chain sort fields (wich it’s not explained in the doc) like that: sort: featured desc num asc

Like you see, you can combine fields and methods. I find this in this topic (not found in my first search).

Suggestions:

  • stay with num: order by default, even if it sorted by a field, don’t change the global sorting
  • add the combination trick in the documentation

//edit : litle glitch though : with this method invisible pages show first, so consider to add visible method filtering like: sort: isVisible desc featured desc num asc (all invisible pages at the end, useful in my case, but you can invert this or move the rule for featured first no matter what)