MC4WP: Mailchimp Top Bar – Email Subscribe Notification Bar

Beschreibung

Boost your email signups and grow your audience effortlessly with a Mailchimp subscribe bar. This plugin adds a beautiful, customizable notification bar to the top or bottom of your WordPress site, ensuring your call to action gets noticed without disrupting the user experience.

As an official add-on for the popular Mailchimp for WordPress plugin, it integrates seamlessly with your existing setup to help you capture more leads.

Why Use a Mailchimp Top Bar?

A notification bar is one of the most effective ways to increase your conversion rates. Because it sticks to the top or bottom of the screen, it remains visible as visitors browse your content.

  • Grow your audience: Capture visitor attention immediately and boost your email list conversions.
  • Unobtrusive user experience: Visitors can easily dismiss the email capture bar if they aren’t interested.
  • Seamless integration: Subscribes users directly to the Mailchimp audience of your choice.

Simple Customization

You don’t need to be a developer to make the Mailchimp top bar match your brand.

  • Easy to configure: Just select your Mailchimp audience and you are ready to go.
  • Visual customization: Edit the bar text, button text, and colors directly from the plugin settings.
  • Flexible positioning: Display the subscribe bar at either the top or bottom of the visitor’s screen.
  • Lightweight performance: The plugin is highly optimized, consisting of just a single 2.6 kB JavaScript file, ensuring your site remains fast.

More Information

About the Author

Mailchimp Top Bar is a plugin by ibericode, a company from The Netherlands that you may know from other plugins like Mailchimp für WordPress, Boxzilla Pop-ups and Koko Analytics.

Screenshots

  • A sleek Mailchimp top bar in action, capturing email signups without disrupting the user experience.
  • The easy-to-use settings page where you can customize your subscribe notification bar colors and behavior.

Installation

Mailchimp für WordPress

Since this plugin depends on the Mailchimp for WordPress plugin, you will need to install that first.

Installing Mailchimp Top Bar

  1. In your WordPress admin panel, go to Plugins > New Plugin, search for Mailchimp Top Bar and click „Install now
  2. Alternatively, download the plugin and upload the contents of mailchimp-top-bar.zip to your plugins directory, which usually is /wp-content/plugins/.
  3. Activate the plugin
  4. Set your Mailchimp API key in Mailchimp for WP > Mailchimp Settings.
  5. Select a Mailchimp audience to subscribe to in Mailchimp for WP > Top Bar.
  6. (Optional) Customize the look & position of your opt-in bar.

FAQ

Can I use this Mailchimp subscribe bar on specific pages only?

Yes, you can easily disable the notification bar on certain pages using a filter. For example, if you only want to load the Top Bar on your blog post pages, you can add this to your theme:

add_filter( 'mctb_show_bar', function( $show ) {
    return is_single();
} );

Another example, this only loads the email capture bar on your „contact“ page:

add_filter( 'mctb_show_bar', function( $show ) {
    return is_page('contact');
} );

Have a look at the Conditional Tags page for all accepted functions.

Is it possible to capture names in the notification bar?

Absolutely! You can add a name field to your Mailchimp top bar by using a simple code snippet to display the field and send the data to your audience.

add_action( 'mctb_before_submit_button', function() {
    echo '<input type="text" name="NAME" placeholder="Your name" />';
});

add_filter( 'mctb_subscriber_data', function( $subscriber ) {
    if( ! empty( $_POST['NAME'] ) ) {
        $subscriber->merge_fields['NAME'] = sanitize_text_field( $_POST['NAME'] );
    }

    return $subscriber;
});

For more details, see our knowledge base article on adding a name field to Mailchimp Top Bar.

How can I hide the email capture bar on mobile devices?

If you prefer not to show the notification bar on smaller screens, you can hide it using custom CSS. Adding the following CSS to your site will hide the bar on all screens smaller than 600px:

@media( max-width: 600px ) {
    &#35;mailchimp-top-bar { display: none !important; }
}

Where can I get support for this Mailchimp form?

If you run into any issues or have questions about configuring your subscribe bar, please open a topic on the WordPress.org plugin support forums.

Rezensionen

20. Oktober 2021
The Support staff are not interested in helping you, just marking their Topics as ‘Resolved’. You need to Hire a WordPress Developer if you want to get the full functionality from the ‘add-on’. I’ve spent 4 days wasting my time on this plugin and will never ever install this rubbish again. I’d give it 0/10 if i could.
22. Juni 2020
This useful topbar does need to be updated to allow a required checkbox otherwise it’s no longer useful/legal to use on any website within the EU or any website collecting data from EU citizens.
21. April 2018 1 Antwort
the plugin is displayed in „plugins“ but no menu, no settings, completely useless … it is useless!
20. Februar 2018
Works exactly as described with great support!
19. Februar 2018 4 Antworten
Hi, I just installed MailChimp Top Bar on my website (where it became a Bottom Bar), and it works just great. Setup is hassle-free, and it looks great without being too aggressive. https://www.microlinux.fr Cheers, Niki
Alle 30 Rezensionen lesen

Mitwirkende und Entwickler

„MC4WP: Mailchimp Top Bar – Email Subscribe Notification Bar“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:

Mitwirkende

„MC4WP: Mailchimp Top Bar – Email Subscribe Notification Bar“ wurde in 1 Sprache übersetzt. Danke an die Übersetzer für ihre Mitwirkung.

Übersetze „MC4WP: Mailchimp Top Bar – Email Subscribe Notification Bar“ in deine Sprache.

Interessiert an der Entwicklung?

Durchstöbere den Code, sieh dir das SVN-Repository an oder abonniere das Entwicklungsprotokoll per RSS.

Änderungsprotokoll

1.7.5

  • Allow WP Core to handle dependency on core Mailchimp for WordPress plugin.
  • Minor defensive coding improvements.

View the full changelog on GitHub