Skip to content

Commit 642a0dd

Browse files
authored
Merge pull request #7104 from umbraco/forms13/brokenlinks
Fix broken links in Forms 13
2 parents 341ffe7 + 9bc4543 commit 642a0dd

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

13/umbraco-forms/editor/creating-a-form/form-settings.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ To access the Form Settings:
66

77
1. Navigate to the **Forms** section.
88
2. Open a Form you wish to customize.
9-
3. Click **Settings** in the top-right corner of the screen.
9+
3. Click **Settings** in the top-right corner of the screen.
1010

11-
![Form settings dialog](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettings.png)
11+
![Form settings dialog](images/FormSettings.png)
1212

1313
## Settings Options
1414

@@ -20,25 +20,25 @@ By default, all submitted records are saved in the database. This option allows
2020

2121
Disabling this option will prevent database records from being stored, but any file uploads made as part of the form submission will still be retained. If you do not want the files to be stored, ensure that any process or method used to process, move, or copy them to a different location also removes the file.
2222

23-
![Form settings Store Records](../../../../10/umbraco-forms/editor/creating-a-form/images/Store-Records.png)
23+
![Form settings Store Records](images/Store-Records.png)
2424

2525
### Captions
2626

2727
Customize the labels of the **Submit**, **Next**, and **Previous** buttons used in your Form.
2828

29-
![Form settings stylesheet](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsCaptions-v9.png)
29+
![Form settings stylesheet](images/FormSettingsCaptions-v9.png)
3030

3131
### Styling
3232

3333
Set a stylesheet to give your Form custom styling. You have an option to disable the default styling. Enabling the **Disable default stylesheet** option will prevent a default stylesheet to be added to the pages where the Form is placed.
3434

35-
![Form settings stylesheet](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsStyling.png)
35+
![Form settings stylesheet](images/FormSettingsStyling.png)
3636

3737
### Validation
3838

3939
Define a message that is displayed when a field is mandatory, when a value is not supplied, or when the value is invalid.
4040

41-
![Form settings validation](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsValidation.png)
41+
![Form settings validation](images/FormSettingsValidation.png)
4242

4343
The following Validations are available:
4444

@@ -79,7 +79,7 @@ These options will only be available if [the feature is configured for display](
7979

8080
Enabling this feature allows the moderator to manage the approval status of a form. This can be used in a number of scenarios. For example, if the form submission will be publicly shown, you can control which are published.
8181

82-
![Form settings Moderation](../../../../10/umbraco-forms/editor/creating-a-form/images/FormSettingsModeration.png)
82+
![Form settings Moderation](images/FormSettingsModeration.png)
8383

8484
### Fields displayed
8585

@@ -95,4 +95,4 @@ To help protect site visitor privacy, rules can be configured in this section fo
9595

9696
A background service that carries out the actual removal of records needs to be [enabled in configuration](../../developer/configuration/#scheduledrecorddeletion). If that is not running, a notification will be displayed.
9797

98-
![Form settings Date Retentions](../../../../13/umbraco-forms/.gitbook/assets/FormSettingsDataRetention.png)
98+
![Form settings Date Retentions](images/FormSettingsDataRetention.png)

13/umbraco-forms/release-notes.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ Forms allows you to make a copy of a form to use as a starting point for a new o
6363

6464
We've also resolved an edge case around copying a form. It's possible to [define workflows as mandatory](./developer/extending/customize-default-workflows.md#setting-a-mandatory-default-workflow). Copying the form without workflows excludes the desired workflow. You would have a form that didn't contain the workflow you wanted to be included on all. This has been tightened up now and mandatory workflows will always be assigned to the copied form [#1331](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1331).
6565

66-
#### Form picker enhancements
67-
68-
In the 14.2 release we enhanced the [form picker property editors](./developer/property-editors.md). We introduced support for restriction of which forms can be selected by folder rather than only by individual forms. This has now been backported to Forms 13 [#891](https://github.com/umbraco/Umbraco.Forms.Issues/issues/891).
69-
7066
#### File upload validation messages
7167

7268
Previously the validation messages presented on the website front end when uploading files were hardcoded and always provided in English. We've added settings now to the "File Upload" field type allowing you to customize these. Dictionary keys can be used in order to provide the information in the user's preferred language [#1327](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1327).
@@ -174,7 +170,7 @@ Please ensure to check the rendering of these features on website forms after th
174170
* Added setting option for single and multiple choice fields to allow for vertical or horizontal display [#1218](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1218).
175171
* Added new setting type for multiple text strings [#1217](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1217)
176172
* Added validation to prevent users defining an email workflow that allows the form's sender email to be defined as that entered by the user [#1210](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1210).
177-
* Allowed for the provision of additional data when rendering and submitting forms. When provided it will be used as a source for ["magic string" replacements](./magic-strings.md). The data will be associated with the created record and made available for custom logic and update within workflows. [#578](https://github.com/umbraco/Umbraco.Forms.Issues/issues/578).
173+
* Allowed for the provision of additional data when rendering and submitting forms. When provided it will be used as a source for ["magic string" replacements](./developer/magic-strings.md). The data will be associated with the created record and made available for custom logic and update within workflows. [#578](https://github.com/umbraco/Umbraco.Forms.Issues/issues/578).
178174
* Added details of workflow type to edit workflow dialog [#1183](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1183).
179175
* Removed an inline prevalue editor that wasn't functional but could surface it's UI when creating forms from templates [#1230](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1230).
180176
* Ensured local links are parsed when HTML fields are returned in the delivery API results for form definitions [#1227](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1227).

13/umbraco-forms/tutorials/creating-a-contact-form.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ In the next couple of steps, we will add some additional configuration required
247247

248248
When you inserted the form in the previous step, you will notice an error message in the reCAPTCHA field. You need to update the configuration to include a value in the `appsettings.json` file.
249249

250-
To configure the reCAPTCHA value, see the [reCAPTCHA configuration](../../developer/configuration/README.md#recaptcha-v2-field-type-configuration) article.
250+
To configure the reCAPTCHA value, see the [reCAPTCHA configuration](../developer/configuration/README.md#recaptcha-v2-field-type-configuration) article.
251251

252252
### Configuring Simple Mail Transfer Protocol (SMTP)
253253

0 commit comments

Comments
 (0)