Skip to content

Commit 4685e01

Browse files
committed
Replaced marketing section with Engage section
1 parent 2bed73d commit 4685e01

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

13/umbraco-engage/developers/personalization/segment-information.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ The `PageView` lies at the heart of Umbraco Engage Analytics feature and exposes
3535
Consider the following example (continued from above) where the content of content type "`Home`" was requested. We will now tell Umbraco to execute this custom code whenever the template `HomeTemplate` is requested:
3636

3737
{% code overflow="wrap" %}
38+
3839
```csharp
3940
public ActionResult HomeTemplate()
4041
{
@@ -49,23 +50,26 @@ public ActionResult HomeTemplate()
4950
...
5051
}
5152
```
53+
5254
{% endcode %}
5355

5456
We can for example check if the current visitor falls into a segment called "**MySegment**". Keep in mind that a visitor can fall into any number of segments (zero, one, or all). A segment alone don't anything and can be regarded as purely informational, or as a "**Flag**" or "**Label**".
5557

5658
The personalization used by the Umbraco Engage to modify the appearance of a page is called **Applied Personalization**.
5759

58-
A page request can have only **one** active Applied Personalization. Based on the current segments (and their sort order), Umbraco Engage picks the first applicable Applied Personalization. This could be a multi-doctype or multi-page personalization (Marketing section) or single-page personalization (content).
60+
A page request can have only **one** active Applied Personalization. Based on the current segments (and their sort order), Umbraco Engage picks the first applicable Applied Personalization. This could be a multi-doctype or multi-page personalization (Engage section) or single-page personalization (content).
5961

6062
To inspect the resolved Applied Personalization, we can use the property `AppliedPersonalization` on the state's **PageView**:
6163

6264
{% code overflow="wrap" %}
65+
6366
```csharp
6467
if (analyticsState.Pageview.AppliedPersonalization != null && analyticsState.Pageview.AppliedPersonalization.Name == "MyAppliedPersonalization")
6568
{
6669
...
6770
}
6871
```
72+
6973
{% endcode %}
7074

7175
Be aware that no personalization may have been resolved for the current request. Make sure to do a **null check** before reading the `AppliedPersonalization` property. The property `SegmentId` will tell you which active segment was responsible for triggering the Applied Personalization.

13/umbraco-engage/marketers-and-editors/ab-testing/monitor-the-ab-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: >-
88

99
# Monitor the A/B Test
1010

11-
When the A/B test is running it is advised to check the progress regularly. This can be done on the specific page or via the Marketing Section.
11+
When the A/B test is running it is advised to check the progress regularly. This can be done on the specific page or via the Engage Section.
1212

1313
If you go to the overview you can see all running tests. The overview includes the following information:
1414

13/umbraco-engage/marketers-and-editors/ab-testing/setting-up-the-ab-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Setting up an A/B test in Umbraco Engage requires no code or need for any extern
1313
Starting A/B tests can be done in two ways:
1414

1515
* Initiate a Single Page, Multiple Page, or Document Type test via the Content App on the specific page,
16-
* Initiate Multipage and Document Type tests via the Marketing section.
16+
* Initiate Multipage and Document Type tests via the Engage section.
1717

1818
## Set up the test
1919

13/umbraco-engage/marketers-and-editors/settings/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ Get an overview of all configured settings of Umbraco Engage.
2323

2424
## [Permissions](permissions.md)
2525

26-
Explore how to control which Umbraco user groups have access to the Marketing section settings and manage where content apps are displayed.
26+
Explore how to control which Umbraco user groups have access to the Engage section settings and manage where content apps are displayed.

0 commit comments

Comments
 (0)