Question : MailChimp  WordPress Plugin Embedded styles display: none; hiding form, Part 2

JF0 or any other expert:

This was my original question:

I'm trying to install the Plugin for MailChimp. It looks like the form is not there, but if you look at the code in Firebug, you see the elements of the form with an embedded style of display: none;.

How do I get rid of this? I can't figure out where it is coming from.

Here's the link:

http://www.enviromedia.com/beta/news/sign-up-enews/

*******************************************************************

The solution was to comment out 1 of the 2 versions of jquery in the header.  I couldn't find the older version that was embedded by WordPress, so I commented out the version I had embedded. That fixed the problem with MailChimp, but caused problems in several other files and also created several javascript errors. This morning, I found where WordPress was embedding jquery and commented that out instead. That fixed the other problems, but the issue with MailChimp returned.

The URL above is still applicable. Any help provided is greatly appreciated.

Lisa

Answer : MailChimp  WordPress Plugin Embedded styles display: none; hiding form, Part 2

Move all of these up in the page BEFORE the js calls. Because they are read last then they have not been assigned their unique names until after the js has been loaded.

<script src="http://www.enviromedia.com/beta/wp-includes/js/jquery/jquery1.3.2.js"></script>
<script>
 var  jq132 = jQuery.noConflict(true);
</script>
<script src="http://www.enviromedia.com/beta/wp-includes/js/jquery/jquery1.2.3.js"></script>
<script>
  var jq123 = jQuery.noConflict(true);
</script>
<script src="http://www.enviromedia.com/beta/js/jquery1.4.2.js"></script>
<script>
  var jq142 = jQuery.noConflict(true);
</script>

Random Solutions  
 
programming4us programming4us