From 46a90cac76d6b2d62c67e27339d97547e2df9336 Mon Sep 17 00:00:00 2001 From: Yulya Lebed Date: Mon, 16 Jun 2025 10:35:10 +0200 Subject: [PATCH 1/5] Added descriptions for Show Row Numbers in grid --- docs/fieldtypes/grid.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/fieldtypes/grid.md b/docs/fieldtypes/grid.md index 9f1c1e15a..bc80bef8c 100755 --- a/docs/fieldtypes/grid.md +++ b/docs/fieldtypes/grid.md @@ -33,6 +33,10 @@ Specifies the maximum number of rows this Grid can have. For example, if you ent Enables moving the Grid rows with drag & drop to change the order +#### Show Row Numbers + +Enables the display of row numbers alongside each row in the data grid. + #### Grid layout Tip: Grid Field Layout From 3da5fbe05c6d0d23d3db0dc6201962633ff77e67 Mon Sep 17 00:00:00 2001 From: Travis 'Nep' Smith Date: Tue, 15 Jul 2025 04:35:40 -0500 Subject: [PATCH 2/5] Update relationships.md Adding examples of how to do a conditional for children entries. --- docs/fieldtypes/relationships.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/fieldtypes/relationships.md b/docs/fieldtypes/relationships.md index e5506caf1..c843e3147 100755 --- a/docs/fieldtypes/relationships.md +++ b/docs/fieldtypes/relationships.md @@ -180,7 +180,17 @@ You would access the child entry in your template using the following syntax: {relationship_field:field2} {/exp:channel:entries} -No looping occurs. +No looping occurs. (If you use this syntax when the field does have multiple child relationships, this will display the content from first item only.) + +### Usage: Testing for Child Entries with a Conditional + +There are two ways to test if there are any children belonging to the current entry and display content if there are none. + +Outside of the `{relationship_field}` loop, use `{relationship_field:count}`, which will be either "" or "1". (Inside the loop, `{relationship_field:count}` always displays the current count.) You can also consider `{relationship_field:total_results}`, which will display the total count of children. + +Therefore, the conditional to test for no child entries is: `{if "{relationship_field:count}" == ""}...{/if}` + +Inside the `{relationship_field}` loop, you can use an `{if relationship_field:no_results}...{/if}` conditional. ## Accessing Siblings From 03f710b36156fcead95e20b59d48cfb2cc195b5d Mon Sep 17 00:00:00 2001 From: robinsowell Date: Tue, 5 Aug 2025 15:26:24 -0400 Subject: [PATCH 3/5] Update grid.md --- docs/fieldtypes/grid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fieldtypes/grid.md b/docs/fieldtypes/grid.md index bc80bef8c..24e794a80 100755 --- a/docs/fieldtypes/grid.md +++ b/docs/fieldtypes/grid.md @@ -35,7 +35,7 @@ Enables moving the Grid rows with drag & drop to change the order #### Show Row Numbers -Enables the display of row numbers alongside each row in the data grid. +Enables the display of row count alongside each row in the data grid. #### Grid layout From db6ba29654addcbf68ee48af839ab430ab17a19e Mon Sep 17 00:00:00 2001 From: Tom Jaeger Date: Wed, 6 Aug 2025 12:51:54 -0400 Subject: [PATCH 4/5] added changelog for 7.5.14 --- docs/installation/changelog.md | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 97052c2cf..00b7f1716 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,54 @@ --> # ExpressionEngine v7 Change Log +
+
+ +
+
+ + +## Version 7.5.14 +(Release: August 6th, 2025) + +- Resolved [#4886](https://github.com/ExpressionEngine/ExpressionEngine/issues/4886) where RTE field was not initialized in Member Fields +- Resolved [#4903](https://github.com/ExpressionEngine/ExpressionEngine/issues/4903) where the log locations for dummy email driver weren't correct +- Resolved [#4625](https://github.com/ExpressionEngine/ExpressionEngine/issues/4625) where modifiers could not be applied to files with too long names +- Resolved [#4385](https://github.com/ExpressionEngine/ExpressionEngine/issues/4385) where Pro Search did not index File fields data well +- Resolved [#4623](https://github.com/ExpressionEngine/ExpressionEngine/issues/4623) where autosaves for new entry could be overwritten by another member +- Resolved [#4708](https://github.com/ExpressionEngine/ExpressionEngine/issues/4708) where superadmins were not able to edit their own secondary roles +- Resolved [#4430](https://github.com/ExpressionEngine/ExpressionEngine/issues/4430) where modules without `mcp` file did not update from CP +- Resolved [#4304](https://github.com/ExpressionEngine/ExpressionEngine/issues/4304) where untrimmed input caused validation issue +- Fixed minigrid settings issue [#4917](https://github.com/ExpressionEngine/ExpressionEngine/pull/4917) +- Fixed file category assignments if the file is in an upload location shared across MSM sites [#4929](https://github.com/ExpressionEngine/ExpressionEngine/pull/4929) +- Fixed issue with pro variables table variable [#4913](https://github.com/ExpressionEngine/ExpressionEngine/pull/4913) + +**Enhancements** ✨ + +- Made credit, description, and location fields searchable in Files [#4930](https://github.com/ExpressionEngine/ExpressionEngine/pull/4930) +- Confirmed we have an integer before structure updates data [#4928](https://github.com/ExpressionEngine/ExpressionEngine/pull/4928) +- Updated ft.toggle.php to remove unused variable[#4927](https://github.com/ExpressionEngine/ExpressionEngine/pull/4927) +- Avoided unnecessary role query for guest users [#4872](https://github.com/ExpressionEngine/ExpressionEngine/pull/4872) +- Improved precision when displaying file size in File Manager [#4748](https://github.com/ExpressionEngine/ExpressionEngine/pull/4748) +- Improved [#4693](https://github.com/ExpressionEngine/ExpressionEngine/issues/4693); show row count on grid fields +- Supported PHP 8.4 & PHP 8.5 [#4527](https://github.com/ExpressionEngine/ExpressionEngine/pull/4527) +- Added ability to search using file ID in File Manager [#4471](https://github.com/ExpressionEngine/ExpressionEngine/issues/4471) + +**Developers** 💻 + +- Added tertiary check on the object in case an Action calls the Template parser [#4867](https://github.com/ExpressionEngine/ExpressionEngine/pull/4867) +- Made `parseLayoutVariables` method public [#4638](https://github.com/ExpressionEngine/ExpressionEngine/pull/4638) + ## Version 7.5.13 (Release: June 16th, 2025) From 7fc79104334e7b6c77609321792b5549fd785ad5 Mon Sep 17 00:00:00 2001 From: Tom Jaeger Date: Wed, 6 Aug 2025 13:08:14 -0400 Subject: [PATCH 5/5] moved release version --- docs/installation/changelog.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 00b7f1716..295531cbb 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,8 @@ --> # ExpressionEngine v7 Change Log +## Version 7.5.14 +(Release: August 6th, 2025)
    @@ -24,10 +26,6 @@
- -## Version 7.5.14 -(Release: August 6th, 2025) - - Resolved [#4886](https://github.com/ExpressionEngine/ExpressionEngine/issues/4886) where RTE field was not initialized in Member Fields - Resolved [#4903](https://github.com/ExpressionEngine/ExpressionEngine/issues/4903) where the log locations for dummy email driver weren't correct - Resolved [#4625](https://github.com/ExpressionEngine/ExpressionEngine/issues/4625) where modifiers could not be applied to files with too long names