When a member posts a photo, I would like to have a DEFAULT category selected. if I added a hidden field to the form where they upload the photo containing the category, I would want to NOT display the category selections if that variable exists.
I know it's in BxDolFilesUploader.php, just not sure where.
Id' love to just change it to
If (hidden_field){
$category = $hiddenfield;
else
{
normal category stuff here.
}