Moonsoft Software Solutions

List Manager Support

List Manager support
Public write access is disabled. Please login
Last post
moon_273

moon_273
3 posts
---
04.02.2012 18:56

List Manager not working with some templates

Hi. List Manager not working with some templates.
For example http://www.astemplates.com/itemdetails.php?id=109




 
MSTeam

MSTeam
227 posts
---
04.02.2012 19:11
Re: List Manager not working with some templates
Hi,
yes,we'd state your problem in a different way, though, more like 'some templates don't follow strictly joomla standards and cause other components break', but unfortunately it's nothing we can do on our code to prevent incorrect using of the library jQuery. But we can help you to fix your template. Please read this post:


http://www.moonsoft.es/index.php/en/help/2-cbsupport/288-re-linked-list-not-working


It's about other extension, same issue, how to fix your template to allow other components to work with the standard library mootools. Just search for the import of jQuery library and add the script jQuery.noConflict(); after it.
In your example, you won't need to add the system mootols library, we've checked it's already included at your template.
Please write again if you need more help with this issue.

Best regards


Moonsoft Team
www.moonsoft.es

 
moon_273

moon_273
3 posts
---
05.02.2012 15:33
Re: List Manager not working with some templates
Not fixed.
This my code from index.php

script type="text/javascript" src="/templates/template ?>/scripts/jquery.js" /script
script type="text/javascript"> jQuery.noConflict(); /script

Oops. Forum not accept >

Edited by moon_273 - 05.02.2012 15:54




 
MSTeam

MSTeam
227 posts
---
05.02.2012 18:41
Re: List Manager not working with some templates
Hello,
yes, this forum doesn't get well with code, sorry. Anyway we get to see your code is all right. But the template imports again another version of jquery library some lines below, so the conflict remains. Please try to add another noconflict line below jquery.slider.pack.js import, so you should get:

import jquery.js
jQuery.noConflict();
import jquery-1.6.1.min.js
import jquery.slider.pack.js
jQuery.noConflict();


using the scripts tag as you did the first time. Made a test here with the template you pointed and the calculator worked normally again.

Hope this helps


Moonsoft Team
www.moonsoft.es

 
moon_273

moon_273
3 posts
---
05.02.2012 22:16
Re: List Manager not working with some templates
Thank you. Fixed.