Support

Account

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;
    }