Setting a 'Photo' fields without showing the size options

Hi,
I would just like to know whether it is possible to add a ‘photo’ field and only allow the user to pick and replace the image and not show the photo size.

I don’t want the photo size to show as this will be set in the script. I am just trying to simplify the process for users.

Hey Hullabaloo,

I’ve already assigned another member of the team who can assist you with your concern. :slight_smile:

Ben

Hey Hullabaloo,

That’s not currently possible but you could hide it with CSS in your module’s css/settings.css file. That would look something like this…

.fl-builder-my-module-settings .fl-photo-field select { 
    display:none !important;
}

Let me know if you have any questions about that.

Justin