I use FOC Search plugin, and setup two methods with fulltext search, where result is sorted by virtual relevance field.
On the controller i have one more ‘order()’ method.
Problem, generated query looks like:
ORDER BY
Location__relavance DESC, // FOC Search
Posts__relavance DESC, // FOC Search
Posts.active DESC // PostsController
How to set Order priority, like?
ORDER BY
Posts.active DESC // PostsController
Location__relavance DESC, // FOC Search
Posts__relavance DESC, // FOC Search