Mailchimp Popup on homepage only with is (front_page) [closed]

You have a couple problems. First, the ! in the conditional means “NOT.” Secondly, the || means “OR”. In other words, your conditional translates to: If this is NOT the front page OR this is NOT the post archive page That describes every page. Try this instead: <?php if ( is_front_page() ) :?> <script id=”mcjs”>!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h). … Read more

Integrate Mailchimp to a Contact Form 7 contact form [closed]

You can use my plugin called MailChimp for WordPress to do this. When installed, you can select one or multiple lists in the plugin settings and use the following shortcode inside your Contact Form 7 templates. [mc4wp_checkbox “Your label text”] It will render a checkbox and when checked, subscribe the given email address to the … Read more

WordPress MailChimp Framework suddenly stopped working without modification [closed]

Well, it seems that the author of WordPress MailChimp Framework is on indefinite vacation. So I suggest to you having the same problem as this one is to go through the PHP MCAPI wrapper (http://apidocs.mailchimp.com/downloads/#php) since this one is directly supported by the MailChimp team. The team has updated the wrapper to handle dropped connections. … Read more