diff --git a/docs/development/services/csv.md b/docs/development/services/csv.md
index 4073e199..cb37d5eb 100755
--- a/docs/development/services/csv.md
+++ b/docs/development/services/csv.md
@@ -17,7 +17,7 @@ lang: php
## Simple Example
-The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associaitve arrays and objects and they can have differing keys and property names:
+The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associative arrays and objects and they can have differing keys and property names:
$csv = ee('CSV');
$csv->addRow(array(
@@ -51,7 +51,7 @@ Add a row of data to the CSV instance.
| Parameter | Type | Description |
| --------- | -------------- | ---------------------------------------------------------------------- |
-| \$rowData | `Array/object` | A single row of data passed in as an object or as an associaitve array |
+| \$rowData | `Array/object` | A single row of data passed in as an object or as an associative array |
| Returns | `Object` | `$this`, the CSV object itself so you can chain `->addRow()` and |
$csv->addRow(array(
diff --git a/docs/general/system-configuration-overrides.md b/docs/general/system-configuration-overrides.md
index bc3821aa..04fd6333 100755
--- a/docs/general/system-configuration-overrides.md
+++ b/docs/general/system-configuration-overrides.md
@@ -1298,8 +1298,23 @@ Example Usage:
**Also found in CP:** `Settings --> Tracking`: [Enable Template Hit Tracking](control-panel/settings/hit-tracking.md#enable-template-hit-tracking)
+
+## `enable_mfa`
+
+If enabled, the Multi-factor authentication (MFA) options will become available for member roles.
+
+| Value | Behavior |
+| ----- | -------------------------------------- |
+| y | Enable Multi-factor authentication |
+| n | Disable Multi-factor authentication (default) |
+
+Example Usage:
+
+ $config['enable_mfa'] = 'y';
+
## `enable_online_user_tracking`
+
If enabled, online user statistics are tracked and the user-based variables in the [Statistics](add-ons/statistics.md) module are available for use.
| Value | Behavior |
diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md
index 1b83c682..5dc5878d 100755
--- a/docs/installation/changelog.md
+++ b/docs/installation/changelog.md
@@ -8,6 +8,30 @@
-->
# ExpressionEngine v7 Change Log
+## Version 7.5.7
+(Release: January 23nd, 2025)
+
+
+
+**Bug Fixes** 💃🐛
+
+- Resolved [#4622](https://github.com/ExpressionEngine/ExpressionEngine/issues/4622) where applying webp modifier to images with the same name but different extensions would produce the same result
+- Resolved [#4634](https://github.com/ExpressionEngine/ExpressionEngine/issues/4634) where Member Template Generator was missing some templates
+- Resolved [#4637](https://github.com/ExpressionEngine/ExpressionEngine/issues/4637) where Pro Search permissions were not displayed correctly
+- Resolved [#4657](https://github.com/ExpressionEngine/ExpressionEngine/issues/4657) where automatic URL titles were not generated for entries with non-ASCII titles
+- Resolved issue where dates were missing leading zeros when using dd.mm.yyyy format
+- Resolved [#4658](https://github.com/ExpressionEngine/ExpressionEngine/issues/4658) where it was not possible to deselect an entry category if multiple selection was not allowed
+- Resolved [#4636](https://github.com/ExpressionEngine/ExpressionEngine/issues/4636) where it was impossible to delete Files in File Manager from mobile phone
+- Resolved [#4393](https://github.com/ExpressionEngine/ExpressionEngine/issues/4393) where Low search settings were not saved when migrating to Pro search
+
## Version 7.5.6
(Release: December 10th, 2024)
diff --git a/docs/templates/globals/single-variables.md b/docs/templates/globals/single-variables.md
index 1b759213..e788cbc7 100755
--- a/docs/templates/globals/single-variables.md
+++ b/docs/templates/globals/single-variables.md
@@ -128,7 +128,24 @@ Boolean (TRUE/FALSE) variable representing whether or not the template is being
Boolean (TRUE/FALSE) variable representing whether or not the current request is a Live Preview from the control panel. Most commonly you would use this to add/hide information on your preview page for content authors:
{if is_live_preview_request}
- {!-- include sample rendering of a social share, Twitter card, FB post, etc. --}
+ DRAFT: Verify before publishing.
+ {/if}
+
+You can also use this variable to control parameters within a tag, so that your preview template can show content that might not appear on the live site:
+
+ {if is_live_preview_request}
+ {exp:channel:entries
+ channel="events"
+ limit="1"
+ {if is_live_preview_request}
+ status="open|archive|draft" show_future_entries="yes" show_expired="yes"
+ {if:else}
+ status="open"
+ {/if}
+ disable="category_fields|member_data|pagination"
+ }
+ {title}
+ {/exp:channel:entries}
{/if}
### `{lang}`
@@ -382,4 +399,4 @@ This variable pair is useful for displaying all errors at once, for example, in
{if:else}
- {/if}
\ No newline at end of file
+ {/if}
diff --git a/docs/templates/pagination.md b/docs/templates/pagination.md
index 4281ae48..ed633afa 100755
--- a/docs/templates/pagination.md
+++ b/docs/templates/pagination.md
@@ -23,6 +23,8 @@ The second method is a more traditional "next page" / "previous page" output:
Pagination will also automatically restrict itself to any category you're currently viewing. So if you have a category specified in your channel entries tag or you are viewing the entries of a category, then the pagination links will automatically restrict themselves to only entries in that category.
+NOTE: **Note:** If there is not enough content for more than one page, nothing will be output by these tags.
+
## Example Code
Here are two basic code examples, one for each of the methods mentioned above. Information about the variables and parameters are covered later.