You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 16/umbraco-commerce/how-to-guides/configuring-abandoned-cart-notification.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ Available from Umbraco Commerce 16.1.0
13
13
The abandoned cart recurring background job automatically sends reminder emails to customers about items left in their shopping carts. You can configure it using the steps below:
14
14
- Go to Store Settings in your admin dashboard.
15
15
- Select the store you want to configure.
16
-
- Scroll down to the Notification Settings section.
16
+
- Scroll down to the Cart Settings section.
17
17
- Choose your Abandoned Cart Email Template. If the email template is not set, no notification will be sent but the webhooks can still be fired.
18
18
- Set the period of minutes that a cart must be inactive before it is deemed to be abandoned. If the value is 0, the abandoned cart detection is disabled.
19
-
- Enter the landing page url for customers to be redirected to when they click on the links in the abandoned cart email.
19
+
- Enter the landing page URL for customers to be redirected to when they click on the links in the abandoned cart email.
@@ -30,6 +30,7 @@ The advanced settings can be configured in the `appsettings.json`
30
30
"Commerce": {
31
31
// Optional settings
32
32
"AbandonedCartNotifierService": {
33
+
"Enable": false,
33
34
"FirstRunTime": "",
34
35
"Period": "1.00:00:00",
35
36
"NotificationBatchSize": 20
@@ -43,6 +44,7 @@ The `appsettings.json` section supports the following keys.
43
44
44
45
| Key | Description |
45
46
| -- | -- |
47
+
| `Enable` | Enable this feature.
46
48
|`FirstRunTime`| The time to first run the scheduled cleanup task, in crontab format. If empty, runs imediately on app startup. |
47
49
|`Period`| How often to run the task, in timespan format. Defaults to every 24 hours. |
48
50
|`NotificationBatchSize`| The number of abandoned carts processed each time the job is run. |
@@ -61,9 +63,6 @@ A new webhook called Cart Abandoned has been added. It is triggered when the Aba
61
63
62
64
## Abandoned Cart Conversion Rates Widget
63
65
64
-
The Abandoned Cart Conversion Rates widget shows how effectively your store recovers lost sales by tracking the percentage of notified abandoned carts that turn into completed purchases.
66
+
The widget shows how many notified abandoned carts are recovered through completed purchases, reflecting your store’s abandoned cart conversion rate.
0 commit comments