Announcement

Collapse
No announcement yet.

Real Estate Extension: Properties > unknown-address

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

  • Real Estate Extension: Properties > unknown-address

    Hi everyone,

    On the Real Estate extension, if you don't insert the address field, on the top it will appear like: "Properties > unknown-address"

    Is there a way to link it to another field? For example having a field name and then having a proper link like: "Properties > property name"

    The address field in some cases is not used and when not used it look not very nice "Properties > unknown-address"

    Thanks,

    Nuno

  • #2
    Hi Nuno,

    I believe you can use before-save formula script. If name equals "unknown-address", then use some other field value.

    Comment


    • #3
      Great!!! Thanks yuri, going to try it

      Update: just added the formula, works perfect!!!

      Really simple formula:

      ifThen(
      name = 'unknown-address',
      name = newfieldname
      );​

      Thanks!
      Last edited by nunos; 05-24-2024, 09:09 PM.

      Comment

      Working...
      X