Home › Forums › Front-end Issues › Front-end form not outputting on multisite › Reply To: Front-end form not outputting on multisite
I’m applying some additional form customizing so my code isn’t as black and white as the documentation but the fact remains that it’s working locally but not on a multi site install. I’m baffled by this. Here’s my code:
<form id="post" name="post" class="acf-form" action="" method="post">
<?php
// EMAIL ADDRESS
echo "<div class='apply-section' id='section-email-address'>";
echo "<h3>Email Address</h3>";
acf_form(array(
'form' => false,
'fields' => array('mws_email_address'),
));
echo "</div>";
}
// DATE OF BIRTH
echo "<div class='apply-section' id='section-dob'>";
echo "<h3>Date of Birth</h3>";
acf_form(array(
'form' => false,
'fields' => array('mws_date_of_birth'),
));
echo "</div>";
?>
<!-- SUBMIT -->
<div class="acf-form-submit">
<input type="submit" name="submit" class="button button-primary button-large" value="Submit Application" />
<span class="acf-spinner"></span>
</div>
<!-- / SUBMIT -->
</form>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.