Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file No results after installation

More
11 years 8 months ago #783 by philippe57
No results after installation was created by philippe57
Hi,
I have done the installation and the set up but it does not resolve my issues.

I am using:
- Joomla 2.5.6
- Themexpert Boostrap template with their framework 3.0
- ads manager latest version 2.7
- ads manager internal and external modules
- themexpert XCaptions

All extensions have a display conflict.
Please find the URL to the website:
dev.lechangemalin.com/

Thank you very much.

Please Log in or Create an account to join the conversation.

More
11 years 8 months ago - 11 years 8 months ago #787 by admin
Replied by admin on topic Re: No results after installation
Hello,
I can several issues on your page coming primarily because of the loaded script :
dev.lechangemalin.com/components/com_ads...ger/js/noconflict.js
You have a few jQuery scripts who work with the 'jQuery' variable. The above script replaces that variable with 'jQ' so it causes conflict.

Then down the page, you have code such as:
<script type="text/javascript">
$(document).ready(function() {
	...  
});
</script>
This has to be modified to avoid conflict
(jQuery(document).ready(function($){)

Then, almost at the bottom of the page, you have:
<script>
jeams(document).ready(function(){
...
from adsmanager. That module does not even uses the 'jQ' variable its own component has set up for jQuery.noconflict.

So it all boils down to the ads manager component and modules being the cause of your troubles.
Its code has to be modified in order for your page to work properly with other components or modules using jQuery. jQuery Easy can help tidy up the code (and you can get rid of the noconflict.js script with it) but won't fix the code changes that need to be made.

I would suggest you contact the ads manager developer to ask him to make his code more friendly to other jQuery extensions.

Olivier.
Last edit: 11 years 8 months ago by admin.

Please Log in or Create an account to join the conversation.

More
11 years 8 months ago #788 by philippe57
Replied by philippe57 on topic Re: No results after installation
thank you for your answer.
Adsmanager extension has his own set up for Query. And if I disable it, the conflict is still there. I will contact the adsmanager developer.

For the code changes you proposed: (jQuery(document).ready(function($){), do you know in which file I have to do the modifications?

I tried to use the Ads all in one module (external module) with another template (e.g. Beez5) and I have no conflict. Is there an issue with my current template from Themxpert?

Please Log in or Create an account to join the conversation.

More
11 years 8 months ago #791 by admin
Replied by admin on topic Re: No results after installation
With the information I have it is impossible for me to know where the file you need to modify comes from. Look under the components and module folders, where ads manage is installed.
You had mo conflict with the template Beez5 as it does not use jQuery to function. Themes from Themxpert mostly do, which is why you may get into this situation.

Olivier.

Please Log in or Create an account to join the conversation.