Home › Forums › Front-end Issues › How to add manual fields to an acf_form › Reply To: How to add manual fields to an acf_form
You would need to use a select field and you can populate the field https://www.advancedcustomfields.com/resources/dynamically-populate-a-select-fields-choices/
You can also have ACF output the form without form tags
<!-- you need to supply the form tags with all correct attributes -->
<form><!-- add correct attributes to this tags -->
<!-- add a field before or after acf fields -->
<input type="text" name="my-field" value="" />
<?php
// call acf form
acf_form('form' => false);
?>
</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.