Home › Forums › Add-ons › Repeater Field › "Inserting" multiple images to Repeater › Reply To: "Inserting" multiple images to Repeater
You may be running up against WordPress’ maximum custom fields count. Add this to your functions.php file and give it another shot. Might not be the issue at all but it would help to rule it out.
add_filter( 'postmeta_form_limit' , 'customfield_limit_increase' );
function customfield_limit_increase( $limit ) {
$limit = 100;
return $limit;
}
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.