Why Is An Embedded Form Not Displaying on Mobile?

Page: https://montgomerypllc.com/legally-fit-business-audit/

I’m using a simple copy and pasted Mailchimp email signup form at the bottom of the page. In Cornerstone and on desktop it displays fine. On mobile, I get this:

I recognize that you don’t provide support for third-party plugins and scripts, but given that Mailchimp is the largest email list application out there, I’m hoping you can provide some guidance.

I have tried deactivating all plugins and I still have the same issue.

Any ideas what might be causing?

Hi @stuartrowens,

I suggest that you use the Content Area element to add the code for the MailChimp form.

Also if the code contains <script> tag it is recommended that you use the wp_head hook in your Child Theme to add that section of the code to the head section of the HTML code. So you will add the code below to functions.php file of your Child Theme:

add_action('wp_head', 'head_information', 9999);

function head_information () { ?>
<!-- Your HTML Code Here -->
<?php }

Replace <!-- Your HTML Code Here --> with the <script> ... section of your code.

You can add the Form HTML code inside the Content Area element.

Alternatively you can use the Email Forms plugin which will do the same thing for you ore easily.

Thank you.

This fixed the problem, thank you for your help!

You’re most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.