From 0fc23bcde62c60d0c07d8df0c644eed0716e02c6 Mon Sep 17 00:00:00 2001 From: Esha Noronha Date: Wed, 12 Nov 2025 12:12:03 +0100 Subject: [PATCH 1/2] Fixed broken links --- .../content-delivery-api/custom-property-editors-support.md | 2 +- 15/umbraco-forms/developer/ajaxforms.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md index b9905c4600a..b911ba2b386 100644 --- a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md +++ b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md @@ -14,7 +14,7 @@ In this article, we'll look into how you can work with the `IDeliveryApiProperty The examples in this article revolve around the fictional `My.Custom.Picker` property editor. This property editor stores the key of a single content item and is backed by a property value converter. -We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) articles. +We will not dive into the details of creating a custom property editor for Umbraco in this article. If you need guidance on that, refer to the [Creating a Property Editor](https://docs.umbraco.com/umbraco-cms/tutorials/creating-a-property-editor) and [Property Value Converters](../../extending/property-editors/property-value-converters) articles. ## Implementation diff --git a/15/umbraco-forms/developer/ajaxforms.md b/15/umbraco-forms/developer/ajaxforms.md index 65ad834a109..9696ec97985 100644 --- a/15/umbraco-forms/developer/ajaxforms.md +++ b/15/umbraco-forms/developer/ajaxforms.md @@ -544,7 +544,7 @@ Examples demonstrating how to handle a file upload and use reCAPTCHA fields are ## Working with the CMS Content Delivery API -The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format. +The [Content Delivery API](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) provides headless capabilities within Umbraco by allowing you to retrieve content in JSON format. When retrieving content that contains an Umbraco Forms form picker, the output by default will consist of the ID of the selected form: @@ -570,7 +570,7 @@ When retrieving content that contains an Umbraco Forms form picker, the output b } ``` -With [expanded output](https://docs.umbraco.com/umbraco-cms/v/12.latest/reference/content-delivery-api#output-expansion) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself. +With [expanded output](https://docs.umbraco.com/umbraco-cms/reference/content-delivery-api) for the property, the full details of the form will be available. The structure and content of the form representation will be exactly the same as that provided by the Forms API itself. ```json { From 24de6dd93b71e03f744caed16b683ddbcb9cea4f Mon Sep 17 00:00:00 2001 From: Esha Noronha Date: Wed, 12 Nov 2025 12:14:24 +0100 Subject: [PATCH 2/2] broken link fix --- .../content-delivery-api/custom-property-editors-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md index b911ba2b386..a45933a5940 100644 --- a/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md +++ b/13/umbraco-cms/reference/content-delivery-api/custom-property-editors-support.md @@ -24,7 +24,7 @@ The code example below showcases the implementation of this interface in the pro Towards the end of the example, you will find the response models that we will be using. -The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) article. +The `IsConverter()` and `GetPropertyValueType()` methods are inherited from the `PropertyValueConverterBase` class, which is covered in the [Property Value Converters](../../extending/property-editors/property-value-converters) article. {% code title="MyCustomPickerValueConverter.cs" lineNumbers="true" %} ```csharp