From 7bad4fffcd3bfb45c73aa4e3260f12ed1a8131a5 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Tue, 23 Jun 2026 10:35:26 +0100 Subject: [PATCH 1/3] Adds UFM Member Name component --- .../property-editors/umbraco-flavored-markdown.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/17/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md b/17/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md index 35b118ce9ad..2b42f013342 100644 --- a/17/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md +++ b/17/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md @@ -122,6 +122,7 @@ The following UFM components are available to use. | Label Value | `{umbValue: headline}` | | Localize | `{umbLocalize: general_name}` | | Content Name | `{umbContentName: pickerAlias}` | +| Member Name | `{umbMemberName: pickerAlias}` | | Link Title | `{umbLink: pickerAlias}` | | Form Name | `{umbFormName: formAlias}` | @@ -149,7 +150,14 @@ The Content Name component will render the name of a content item, (either Docum The alias prefix is `umbContentName`. An example of the syntax is `{umbContentName: pickerAlias}`, which would render the component as ``. -The Content Name component supports content-based pickers, such as the Document Picker, Content Picker (formerly known as Multinode Treepicker), and Member Picker. Support for the advanced Media Picker will be available in an upcoming Umbraco release. +The Content Name component supports content-based pickers, such as the Document Picker, Content Picker (formerly known as Multinode Treepicker) and Media Picker. + +#### Member Name + +The Member Name component will render the name of a member from the value of a given Member Picker property editor. Multiple values will render the names as a comma-separated list. + +The alias prefix is `umbMemberName`. An example of the syntax is `{umbMemberName: pickerAlias}`, which would render the component as ``. + #### Link Title From 10739d39775f1937b158c55cf6aea637dd147a4d Mon Sep 17 00:00:00 2001 From: leekelleher Date: Tue, 23 Jun 2026 11:34:47 +0100 Subject: [PATCH 2/3] Adds UFM Member Name component to v18 docs --- .../property-editors/umbraco-flavored-markdown.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md b/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md index 35b118ce9ad..5a0cfe6edb2 100644 --- a/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md +++ b/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md @@ -122,6 +122,7 @@ The following UFM components are available to use. | Label Value | `{umbValue: headline}` | | Localize | `{umbLocalize: general_name}` | | Content Name | `{umbContentName: pickerAlias}` | +| Member Name | `{umbMemberName: pickerAlias}` | | Link Title | `{umbLink: pickerAlias}` | | Form Name | `{umbFormName: formAlias}` | @@ -151,6 +152,12 @@ The alias prefix is `umbContentName`. An example of the syntax is `{umbContentNa The Content Name component supports content-based pickers, such as the Document Picker, Content Picker (formerly known as Multinode Treepicker), and Member Picker. Support for the advanced Media Picker will be available in an upcoming Umbraco release. +#### Member Name + +The Member Name component will render the name of a member from the value of a given Member Picker property editor. Multiple values will render the names as a comma-separated list. + +The alias prefix is `umbMemberName`. An example of the syntax is `{umbMemberName: pickerAlias}`, which would render the component as ``. + #### Link Title The Link Title component will render the title of a link from the value of a given Link Picker property editor. Multiple links will render the titles as a comma-separated list. From 5560cf4d7bff9a53d6f91ae4b563639d6ebf94de Mon Sep 17 00:00:00 2001 From: leekelleher Date: Tue, 23 Jun 2026 11:34:56 +0100 Subject: [PATCH 3/3] Adds UFM Element Name component to v18 docs --- .../property-editors/umbraco-flavored-markdown.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md b/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md index 5a0cfe6edb2..9747fa67d20 100644 --- a/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md +++ b/18/umbraco-cms/model-your-content/property-editors/umbraco-flavored-markdown.md @@ -122,6 +122,7 @@ The following UFM components are available to use. | Label Value | `{umbValue: headline}` | | Localize | `{umbLocalize: general_name}` | | Content Name | `{umbContentName: pickerAlias}` | +| Element Name | `{umbElementName: pickerAlias}` | | Member Name | `{umbMemberName: pickerAlias}` | | Link Title | `{umbLink: pickerAlias}` | | Form Name | `{umbFormName: formAlias}` | @@ -150,7 +151,13 @@ The Content Name component will render the name of a content item, (either Docum The alias prefix is `umbContentName`. An example of the syntax is `{umbContentName: pickerAlias}`, which would render the component as ``. -The Content Name component supports content-based pickers, such as the Document Picker, Content Picker (formerly known as Multinode Treepicker), and Member Picker. Support for the advanced Media Picker will be available in an upcoming Umbraco release. +The Content Name component supports content-based pickers, such as the Document Picker, Content Picker (formerly known as Multinode Treepicker) and Media Picker. + +#### Element Name + +The Element Name component will render the name of an element from the value of a given Element Picker property editor. Multiple values will render the names as a comma-separated list. + +The alias prefix is `umbElementName`. An example of the syntax is `{umbElementName: pickerAlias}`, which would render the component as ``. #### Member Name