-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds documentation for mautic/mautic/pull/14100 #317
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -88,9 +88,9 @@ | |||||
.. note:: | ||||||
You can associate checkbox group fields with *boolean* and *select - multiple* fields, but not *select* fields. | ||||||
|
||||||
- **Date** - This field allows the visitor to select a date with a calendar picker. The formatting of the date applies the default setting in your Configuration. | ||||||
- **Date** - This field allows the visitor to select a date with a calendar picker. The formatting of the date applies the default setting in your Configuration. [A PHP parseable BNF-like string](https://www.php.net/manual/en/datetime.formats.php) can be used to set a dynamic/relative to now default value for this field. | ||||||
Check warning on line 91 in docs/components/forms.rst GitHub Actions / prose
Check failure on line 91 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 91 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 91 in docs/components/forms.rst GitHub Actions / prose
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Passive -> Active voice |
||||||
|
||||||
- **Date/time** - Similar to the date field, this allows the visitor to select both the date and the time using a calendar picker. | ||||||
- **Date/time** - Similar to the date field, this allows the visitor to select both the date and the time using a calendar picker. [A PHP parseable BNF-like string](https://www.php.net/manual/en/datetime.formats.php) can be used to set a dynamic/relative to now default value for this field. | ||||||
Check warning on line 93 in docs/components/forms.rst GitHub Actions / prose
Check failure on line 93 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 93 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 93 in docs/components/forms.rst GitHub Actions / prose
|
||||||
|
||||||
- **Description** - A basic header field, most often used to provide a visual title for the Form. The header field acts as the field name or label. The description area - accessed under the Properties tab - is a free text WYSIWYG editor, where you can add a description of the Form. By default, the description shows immediately below the header field in paragraph text format. | ||||||
|
||||||
|
@@ -103,7 +103,7 @@ | |||||
|
||||||
- **HTML area** - This field allows marketers to add custom HTML to their Form. | ||||||
|
||||||
- **Hidden** - This field won't be visible on the Form, but include default values, saved along with the Form submission, for reporting or internal tagging purposes. | ||||||
- **Hidden** - This field won't be visible on the Form, but include default values, saved along with the Form submission, for reporting or internal tagging purposes. [A PHP parseable BNF-like string](https://www.php.net/manual/en/datetime.formats.php) can be used to set a dynamic/relative to now default value for this field. Unlike **Date** or **Date/time**, a **Hidden** field's default value must end with `|date` for dynamic date parsing to work (e.g., `now|date`). | ||||||
Check failure on line 106 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 106 in docs/components/forms.rst GitHub Actions / prose
Check warning on line 106 in docs/components/forms.rst GitHub Actions / prose
Check failure on line 106 in docs/components/forms.rst GitHub Actions / prose
|
||||||
|
||||||
- **List - Country** - This populates Mautic's default, non-editable country list. To use a custom list you should make use of the Select field type and manually enter the countries you would like to include. | ||||||
|
||||||
|
@@ -527,4 +527,4 @@ | |||||
:width: 600 | ||||||
:alt: Screenshot showing domain blocking used in a Mautic Form | ||||||
|
||||||
It's advised to provide a helpful message to display if the visitor tries to use an Email address from a blocked domain, to help them understand what the problem is. | ||||||
It's advised to provide a helpful message to display if the visitor tries to use an Email address from a blocked domain, to help them understand what the problem is. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @putzwasser please use the command
make link
at the terminal, follow the steps and then use the xref macro here. For info, if you're doing internal linking check the docs on using the :ref: role for linking within the same document, and using :doc: to link across pages.Please fix this in all the places you've mentioned it. Thanks!