From b9f71b35eec7967e0e821b11a1df4795db8415a3 Mon Sep 17 00:00:00 2001 From: pawelpawlik Date: Thu, 13 Feb 2025 19:43:21 +0100 Subject: [PATCH 1/2] Added link to field type tutorial in 'Creating Filed Type' page --- .../field_types/create_custom_generic_field_type.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content_management/field_types/create_custom_generic_field_type.md b/docs/content_management/field_types/create_custom_generic_field_type.md index e97f21329c..31c7a41304 100644 --- a/docs/content_management/field_types/create_custom_generic_field_type.md +++ b/docs/content_management/field_types/create_custom_generic_field_type.md @@ -7,7 +7,9 @@ description: Create a new field type based on the Generic field type. The Generic field type is an abstract implementation of field types holding structured data for example, address. You can use it as a base for custom field types. The Generic field type comes with the implementation of basic methods, -reduces the number of classes which must be created, and simplifies the tagging process. +reduces the number of classes which must be created, and simplifies the tagging process. + +A more in-depth, step-by-step tutorial can be viewed here: [Creating a Point 2D field type](creating_a_point2d_field_type.md). !!! tip From 6a51f4e853f7160186902ab7ace8dbe0d748152a Mon Sep 17 00:00:00 2001 From: pawelpawlik Date: Fri, 14 Feb 2025 10:28:31 +0100 Subject: [PATCH 2/2] Removed link to field type tutorial at the end of 'Creating Filed Type' page --- .../field_types/create_custom_generic_field_type.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/content_management/field_types/create_custom_generic_field_type.md b/docs/content_management/field_types/create_custom_generic_field_type.md index 31c7a41304..298f7ce67e 100644 --- a/docs/content_management/field_types/create_custom_generic_field_type.md +++ b/docs/content_management/field_types/create_custom_generic_field_type.md @@ -107,5 +107,3 @@ Next, define a **Hello World** field: After saving, your **Hello World** content type should be available under **Content** in the sidebar menu. ![Creating Hello World](extending_field_type_hello_world.png) - -For more detailed tutorial on Generic field type follow [Creating a Point 2D field type](creating_a_point2d_field_type.md).