Just in case anyone else runs into this problem:
Developing a site with Nivo Slider installed I added the MailChimp email signup form and the Nivo Slider stopped working, it stopped displaying at all.
The problem was this line in the MailChimp signup form code, about the last line of the MailChimp code snippet:
The solution is to remove the expression ".noConflict(true)" leaving you with:
Developing a site with Nivo Slider installed I added the MailChimp email signup form and the Nivo Slider stopped working, it stopped displaying at all.
The problem was this line in the MailChimp signup form code, about the last line of the MailChimp code snippet:
Code:
<script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
Code:
<script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery;</script>
Comment