I really need to figure this out. Looking at the generated code in the admin panel for adding an item to a collection, I can see that only 10 collections are generated in the drop down list (in the admin page ---> either when you're adding a single item or batch adding many items, the Collection Metadata --> Collection drop down list only returns the first ten collections).
I'm guessing the reason is in the PHP that generates the form for the drop down list. After looking through a lot of the PHP code, I'm guessing the file that needs adjusting is in
admin/themes/default/items
and it's around line 337. I'll add the code below although I'm not sure how it will display when I submit this post:
<fieldset id="collection-metadata">
<legend>Collection Metadata</legend>
<div class="field">
<?php select('collection_id',
collections(),
$item->collection_id,
'Collection',
'id',
'name' ); ?>
In my limited experience, the code above looks good to me. Does anything think otherwise? Could the problem be there or somewhere else?
Thanks.