diff --git a/docs/fieldtypes/fluid.md b/docs/fieldtypes/fluid.md index e6d7c885b..d03d72c83 100755 --- a/docs/fieldtypes/fluid.md +++ b/docs/fieldtypes/fluid.md @@ -61,8 +61,8 @@ For example, if you have a Fluid field `fluid_content` with a text field `fluid_ The prefixed tag pair is a looping tag pair. You can have more than one `fluid_text` field for the entry, it's entirely at the entry author's discretion. The author also determines the order of the field output. -Displaying field groups from within Fluid field is slightly different, as it requires additions `{fields}` tag pair. -So given that `blog` is the short name of custom field group and `fluid_header` and `fluid_text` are fields in that group, the template might look like: +Displaying field groups from within Fluid field is slightly different, as it uses a `{fields}` tag pair to loop through fields within the field group. The order of fields within the loop defaults to the same order of the fields within the field group. You may reverse this order by using `{fields order="desc"}` or specify a different order with `{fields fixed_order="field_2|field_1"}`. +So given that `blog` is the short name of our custom field group and `fluid_header` and `fluid_text` are fields in that group, the template might look like: {fluid_content} @@ -79,6 +79,18 @@ So given that `blog` is the short name of custom field group and `fluid_header` {/fluid_content} +ExpressionEngine 7.5 introduces the ability to access fields from a field group without the use of a `{fields}` loop. +The field name must be prefixed by the group's short_name and placed within the group tag like this: + + {fluid_content} + + {fluid_content:blog} +