diff --git a/15/umbraco-commerce/release-notes/README.md b/15/umbraco-commerce/release-notes/README.md
index 0da1c913740..77486c82f67 100644
--- a/15/umbraco-commerce/release-notes/README.md
+++ b/15/umbraco-commerce/release-notes/README.md
@@ -18,6 +18,11 @@ If you are upgrading to a new major version, check the breaking changes in the [
This section contains the release notes for Umbraco Commerce 15 including all changes for this version.
+#### [15.3.9](https://github.com/umbraco/Umbraco.Commerce.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Acomponent%2Fcommerce+label%3Arelease%2F15.3.9) (Jul 11th 2025)
+
+* Fixed bug in Safari browsers not persisting price property updates [#713](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/713).
+* Fixed bug with gift cards not persisting remaining amount [#729](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/729).
+
#### [15.3.8](https://github.com/umbraco/Umbraco.Commerce.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Acomponent%2Fcommerce+label%3Arelease%2F15.3.8) (Jun 27th 2025)
* Fixed regression where the order refunding logic wasn't falling back to the correct internal methods [#710](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/710).
diff --git a/16/umbraco-commerce/release-notes/README.md b/16/umbraco-commerce/release-notes/README.md
index ddf7db7cb4f..1ae48654f9f 100644
--- a/16/umbraco-commerce/release-notes/README.md
+++ b/16/umbraco-commerce/release-notes/README.md
@@ -18,13 +18,21 @@ If you are upgrading to a new major version, check the breaking changes in the [
This section contains the release notes for Umbraco Commerce 16 including all changes for this version.
+#### [16.1.0](https://github.com/umbraco/Umbraco.Commerce.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Acomponent%2Fcommerce+label%3Arelease%2F16.1.0) (11th Jul 2025)
+
+* Added store theming options to store settings.
+* Added abandoned cart notifier service to send emails & webhooks when carts become abandoned.
+* Fixed regression with not being able to refund a payment [#710](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/710).
+* Fixed bug in Safari browsers not persisting price property updates [#713](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/713).
+* Fixed bug with gift cards not persisting remaining amount [#729](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/729).
+
#### 16.0.0 (12th Jun 2025)
* Version 16 final release.
* Fixed bug in property editors with store config not resolving the correct store [#721](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/721).
* Fixed stock input allowing stock levels below zero [#714](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/714).
* Fixed bug in price property editor not honoring extra decimal places config [#712](https://github.com/umbraco/Umbraco.Commerce.Issues/issues/712).
-
+
#### 16.0.0-rc1 (28th May 2025)
Initial release candidate for Umbraco v16. This release doesn't contain any new features; rather, it's a v16 compatibility release.
diff --git a/commerce-add-ons/packages/checkout/configuring-umbraco.md b/commerce-add-ons/packages/checkout/configuring-umbraco.md
index 933bcd76517..847f1c3bc64 100644
--- a/commerce-add-ons/packages/checkout/configuring-umbraco.md
+++ b/commerce-add-ons/packages/checkout/configuring-umbraco.md
@@ -10,9 +10,13 @@ On the root of these nodes, you can configure a series of options to customize t
## Step 1: Configuring the Checkout flow
-
+
-
| Name | Description |
|---|
| Store Logo | A link to a media item to use as the store logo. If one is not selected, then the store name will be displayed instead. |
| Store Address | The official address of the store. This will be displayed in the footer of all email communications. |
| Theme Color | The color theme to use for the checkout design. |
| Collect Shipping Info | A checkbox to set whether to collect shipping info or not. If deselected, all shipping info-related fields/steps will be removed from the checkout flow |
| Order Line Property Aliases | A comma-separated list of order line property aliases to display in the order summary. |
| Checkout Back Page | The page to go back to when backing out of the checkout flow. |
| Terms and Conditions Page | Defines which page on the site contains the terms and conditions of the store. |
| Privacy Policy Page | The page on the site containing the privacy policy. |
| Hide from Navigation | Checkbox to hide the checkout page from the site's main navigation. |
+{% hint style="info" %}
+In Umbraco Commerce 16.1.0, the logo and theme color options have been moved to the store **Settings** section for consistent theming across all add-ons.
+{% endhint %}
+
+| Name | Description |
|---|
| Collect Shipping Info | A checkbox to set whether to collect shipping info or not. If deselected, all shipping info-related fields/steps will be removed from the checkout flow |
| Order Line Property Aliases | A comma-separated list of order line property aliases to display in the order summary. |
| Checkout Back Page | The page to go back to when backing out of the checkout flow. |
| Terms and Conditions Page | Defines which page on the site contains the terms and conditions of the store. |
| Privacy Policy Page | The page on the site containing the privacy policy. |
| Hide from Navigation | Checkbox to hide the checkout page from the site's main navigation. |
In addition to these root node settings, each checkout step page also has a number of configurable options:
diff --git a/commerce-add-ons/packages/media/checkout/uc_checkout_settings.png b/commerce-add-ons/packages/media/checkout/uc_checkout_settings.png
new file mode 100644
index 00000000000..ae185dd4497
Binary files /dev/null and b/commerce-add-ons/packages/media/checkout/uc_checkout_settings.png differ