Hello,
Following the release of the version 3.2.6, an issue appears in the list page, a fix will be released today but for those who don't want to wait or update, here is the solution.
Open the file administrator/components/com_adsmanager/models/content.php and find the line 394 :
----------------------------------------------------------------------------
if($filter_order == "distance " && $lat != 0 && $lon != 0) {
$enableLocationOrdering = true;
} else {
$filter_order = null;
}
----------------------------------------------------------------------------
Remove the else to have this :
----------------------------------------------------------------------------
if($filter_order == "distance " && $lat != 0 && $lon != 0) {
$enableLocationOrdering = true;
} else if ($filter_order == "distance ") {
$filter_order = null;
}
----------------------------------------------------------------------------
And it's done :)