Login or create new account.

By registering on joomprod.com, you will have immediate access to all our free products and to the public side of our support forum.

Enjoy our subscriptions.

Each of our subscriptions allow you to enjoy the private side of the support forum and all the update of our products for a period ranging from 3 months to 1 year.

Payment And immediate download.

After subscribing to one of our subscription, the products are immediately downloadable.

Login

Or Register
Accueil / Support / Troubleshooting / List ordering issue

AdsManager - End of life

It is with great regrets that we have chosen to end the developpement of Adsmanager and its other associated components.

AdsManager is born 10 years ago and, as of today, the number of new subscriptions and downloads have fallen and we cannot maintain the component anymore.

All active subscribers will be able to continue enjoying support until the end of their subscription.

The components will be free and no support will be provided anymore for the other users.

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 :)