I have a custom content type that uses a field which I have set to unlimited. On the new content submission page I see this field with two inputs, if I click "Add another item" then I can add another item. Is there a way to make more than two of these fields display by default?

I use a Python cURL script to grab content from elsewhere on the

web and to create a new page with my custom content. My fields are:

field_custom_data[0][value]=whatever1
field_custom_data[1][value]=whatever2

If I add a third to my cURL script it is ignored:

field_custom_data[2][value]=whatever3

This is due to the field not being available within the form.

Any clues would be brilliant. Thanks.

Comments

Capricorn20’s picture

In fact there could be up to about 50 values I need to add so if this can't be done then could the numbe of fields be set to another number, such as 50, a very large form is irrelevant to me as it will be automated and never seen. Having up to 10 entries allowed is not enough and how the unlimited works is not useful enough.