Hi
Ok. That's officially worst case of conflict I've ever seen. You have too many extentions using different versions of jQuery or mootools and it's not possible to find one that match them all. I've checked every possible combination. So the only option is to remove couple of them from equasion. I believe this code is causing the most damage:
- Code: Select all
joms.jQuery(document).ready(function(){
var menuUrl = "http://www.upyourface.com/users.html?usexius=1".replace(/\&\;/gi, "&");
joms.jQuery("a[href^='" + menuUrl + "']").hide();
});
joms.jQuery(document).ready(function(){
var menuUrl = "http://www.upyourface.com/offerte/le-tue-pubblicazioni".replace(/\&\;/gi, "&");
joms.jQuery("a[href^='" + menuUrl + "']").hide();
});
joms.jQuery(document).ready(function(){
var menuUrl = "http://www.upyourface.com/events.html".replace(/\&\;/gi, "&");
joms.jQuery("a[href^='" + menuUrl + "']").hide();
});
joms.jQuery(document).ready(function(){
var menuUrl = "http://www.upyourface.com/quiz-dashboard".replace(/\&\;/gi, "&");
joms.jQuery("a[href^='" + menuUrl + "']").hide();
});
joms.jQuery(document).ready(function(){
var menuUrl = "http://www.upyourface.com/il-mio-account.html".replace(/\&\;/gi, "&");
joms.jQuery("a[href^='" + menuUrl + "']").hide();
});
any idea which module can be adding it ? "joms" tells that it has something to do with Jomsocial, but I have already removed jomsocial component form homepage, since You have not been using it here anyway.
Here is what You need to do so I'll be able to make the version check one more time. There is a lot of modules which are attached to all pages, but position they are attached to doesn't exists in homepage. You need to attach this modules to menu items which has this module position only, so the amount of javascripts for frontpage can be reduced. Let me know when You will be ready so I'll try Easy jQuery one more time.