I have recently upgraded CiviCRM to 3.1.3. From that moment, the Javascript support of CiviCRM failed. I figured out that it has something to do with the superfish menu: if I disable that everything is fine.

I have tried other themes with superfish support (e.g. Chamfer) and that theme still works.

I have posed the same question on the CiviCRM forums, but does aynone have any ideas here?

Comments

edvanleeuwen’s picture

This is still the case with version 3.1.4.

danpros’s picture

Hi,

I've written an article about how to solve this problem here.

To resolving this, just simply change the superfish.js in pixture_reloaded > sf > js folder

$(document).ready(function() {
  $('#superfish-inner ul').superfish();
});

to

 jQuery(document).ready(function($) {
  $('#superfish-inner ul').superfish();
});

Hope that help.

regards,
Dan

edvanleeuwen’s picture

Status: Active » Fixed

Works great! Thanks.

danpros’s picture

Glad I can help :)

Regards,
Dan

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

yogib’s picture

Yes this really works Thanks :)