|
Hello that option is for bulkupload.
Skip upload and process the files already in your upload directory?
Basically that would mean you have set them up an ftp account to your server to upload files to. Not many people use it but it was a feature that use to be only for admin until customers requested we open this option up to users.
You can remove it by surrounding the relevant place with a conditional clause to only show it for admins
if ( $User['adminedit'] == 1 ) {
html here
}
|