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

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

An error can be shown once you upgrade your PHP version :

PHP message: PHP Warning:  "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2" 
 
To fix it, open the file administrator/components/com_adsmanager/models/content.php, find the lines (~288 and ~304) and simply replace the word 'continue' by 'break'.

In acymailing, the last update of the component might cause an error with the AdsManager plugin.

In you have that error, here are the steps to fix that easily.

 

- Open the file plugins/acymailing/adsmanager/adsmanager.php
- Replace all the acymailing:: by acymailing_

In the last version of AdsManager, the behavior and settings of the gmap module have been upgraded.

- The configuration of the module is now in the module setting and not in the AdsManager configuration.
Mulitple gmap module can now have their own settings.

- In the configuration of AdsManager, display tab, a new setting 'Gmap module name that will be placed above the list' (sometime that setting is not translated, you will see ADSMANAGER_DISPLAY_MAP_NAME_MODULE instead of the name) has been added. You need to fill that field with the name of the module that will be placed above the list.