Mailchimp action URL is working. How to fix this?

  1. Home
  2. Docs
  3. OpenEvent
  4. Frequently Asked Question...
  5. Mailchimp action URL is working. How to fix this?

Mailchimp action URL is working. How to fix this?

Please apply the below change:

1) Please copy wp-content/themes/openevent/components/templates/shortcodes/efcb_newsletter.php tp wp-content/themes/openevent-child/components/templates/shortcodes/

2) Open wp-content/themes/openevent-child/components/templates/shortcodes/efcb_newsletter.php

3) Around line number 46, you can find:

<form method=”get” action=”<?php echo $args[‘mailchimp_action_url’]; ?>” class=”subscribe__form” novalidate>

4) Please change this to:

<form method=”post” action=”<?php echo $args[‘mailchimp_action_url’]; ?>” class=”subscribe__form” novalidate>

5) Save the file.

Was this article helpful to you? Yes No