Announcement

Collapse
No announcement yet.

Default image in image field

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Default image in image field

    As the title says. Is it possible somehow to have a default image in an image field?

  • #2
    Probably the easiest way is to set a formula like this:
    Code:
    ifThen(
        entity\isNew(),
        imageId = '5f9be8a19752b2880'
    );
    imageId - in my example my image field called 'image'
    5f9be8a19752b2880 - image id (this image should be already uploaded to the system to be able to get its ID).

    Comment


    • #3
      Maximus , Hi, thank you, worked immediately.

      Comment

      Working...
      X