Newsletter Form not showing in footer (E-goi)

Hi,

I am trying to put a newsletter form from E-goi (https://wordpress.org/plugins/smart-marketing-for-wp/) in the footer .

After following all the steps for the integration, we tried to put the newsletter form in the footer (tried with a shortcode and also tried with proper widget) and it doesn’t show. However, we know it’s not a plugin problem cause it works in other places: https://snag.gy/dORGXL.jpg

Note: I used the code below to remove template’s newsletter form because we wanted the E-goi form:

#footer form {

display: none !important;

}

Can you help me?

Thanks

Hello,

The CSS code you have added is to remove the form from footer. Hence, if the plugin you are using, also happens to use “form” element, then this will not show.

Try replacing the CSS code you have used with this one below:

#footer .newsletter-form {
display: none;
}
This will remove the themes form but allow for other forms via widgets.

Thank you

Hello,

That worked just fine. Thank you for your help!