Skip to content

Commit 1e7805b

Browse files
committed
Remove all ums references
1 parent 7a12345 commit 1e7805b

File tree

21 files changed

+51
-47
lines changed

21 files changed

+51
-47
lines changed

13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/bridging-library-for-google-analytics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
icon: square-exclamation
3-
description: Learn how to bridge Google Analytics with the data in uMS.
3+
description: Learn how to bridge Google Analytics with the data in Umbraco Engage.
44
---
55

66
# Bridging Library for Google Analytics
77

8-
We have included a bridging JavaScript file to "catch" all Google Analytics event calls and send them to Umbraco Engage. If you have a website with Google Analytics events defined you do not have to change the code to send them to uMS. The only thing you need to do is include our JavaScript bridge.
8+
We have included a bridging JavaScript file to "catch" all Google Analytics event calls and send them to Umbraco Engage. If you have a website with Google Analytics events defined you do not have to change the code to send them to Umbraco Engage. The only thing you need to do is include our JavaScript bridge.
99

1010
## Google Analytics 4 (GA4)
1111

13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/bridging-library-for-google-tag-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to bridge data between Google Tag Manager and Umbraco Eng
55

66
# Bridging Library for Google Tag Manager
77

8-
When using Google Tag Manager you can collect all events already in uMS. This is set up in the same way as [classic Google Analytics](../../../../../analytics/clientside-events-and-additional-javascript-files/bridging-library-for-google-analytics/).
8+
When using Google Tag Manager you can collect all events in Umbraco Engage. This is set up in the same way as [classic Google Analytics](../../../../../analytics/clientside-events-and-additional-javascript-files/bridging-library-for-google-analytics/).
99

1010
To include the file add the following code before the closing `body` tag in your HTML:
1111

13/umbraco-engage/developers/introduction/the-umbraco-engage-cookie/README.md

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

1010
When visiting a website with Umbraco Engage installed you will get a unique cookie. This cookie allows for relating different page visits or sessions to the same visitor. It will also continuously serve the same variant of an A/B test.
1111

12-
By default the uMS cookie has the name `umbracoEngageAnalyticsVisitorId`. You can change the name in the [configuration file](../../settings/configuration-options-2-x/).
12+
By default the Umbraco Engage cookie has the name `umbracoEngageAnalyticsVisitorId`. You can change the name in the [configuration file](../../settings/configuration-options-2-x/).
1313

1414
The Umbraco Engage cookie:
1515

13/umbraco-engage/developers/personalization/implement-your-own-segment-parameters.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,12 @@ For more inspiration, you can look at the built-in rule editors of Umbraco Engag
125125

126126
We use the "**data.days**" property of our rule definition in the editor. The editor gets passed in the rule definition as well as a "**config**" object which we should update according to the user input.
127127

128-
```
129-
<ums-segment-rule-editor name="$ctrl.rule.name" type="$ctrl.rule.type" save="$ctrl.save()"> <select ng-options="value as day for (value, day) in $ctrl.rule.data.days" ng-model="$ctrl.config.dayOfWeek"> <option value="">- Select -</option> </select></ums-segment-rule-editor>
128+
```html
129+
<ums-segment-rule-editor name="$ctrl.rule.name" type="$ctrl.rule.type" save="$ctrl.save()">
130+
<select ng-options="value as day for (value, day) in $ctrl.rule.data.days" ng-model="$ctrl.config.dayOfWeek">
131+
<option value="">- Select -</option>
132+
</select>
133+
</ums-segment-rule-editor>
130134
```
131135

132136
* `segment-rule-day-of-week-editor.js`

13/umbraco-engage/developers/profiling/external-profile-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To render this External Profile Tab with a custom component, you have to create
2525

2626
{% code overflow="wrap" %}
2727
```javascript
28-
angular.module("myCustomModule", ["Engage"]);// angular.module("umbraco").requires.push("myCustomModule");// angular.module("myCustomModule").run([ ... ]) // Create a component. We create a component named "myCustomExternalProfileDataComponent" here:angular.module("umbraco").component("myCustomExternalProfileDataComponent", { bindings: { visitorId: "<" }, template: "<h1>My custom external profile data component! visitorId = {{$ctrl.visitorId}}</h1>", controller: [function () { this.$onInit = function () { // Your logic here } }]});// Register your custom external profile data component.// Please note you have to use kebab-case for your component name here// just like how you would use it in an AngularJS template (i.e. myCustomComponent -> my-custom-component)angular.module("umbraco").run(["umsCustomComponents", function (customComponents) { customComponents.profiles.externalProfileData = "my-custom-external-profile-data-component";}]);
28+
angular.module("myCustomModule", ["Engage"]);// angular.module("umbraco").requires.push("myCustomModule");// angular.module("myCustomModule").run([ ... ]) // Create a component. We create a component named "myCustomExternalProfileDataComponent" here:angular.module("umbraco").component("myCustomExternalProfileDataComponent", { bindings: { visitorId: "<" }, template: "<h1>My custom external profile data component! visitorId = {{$ctrl.visitorId}}</h1>", controller: [function () { this.$onInit = function () { // Your logic here } }]});// Register your custom external profile data component.// Please note you have to use kebab-case for your component name here// just like how you would use it in an AngularJS template (i.e. myCustomComponent -> my-custom-component)angular.module("umbraco").run(["myCustomComponents", function (customComponents) { customComponents.profiles.externalProfileData = "my-custom-external-profile-data-component";}]);
2929
```
3030
{% endcode %}
3131

13/umbraco-engage/developers/settings/README.md

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

99
# Settings
1010

11-
In this section, you can find information about configuring different parts of uMS.
11+
In this section, you can find information about configuring different parts of Umbraco Engage.
1212

1313
## **Goals Configuration**
1414

13/umbraco-engage/getting-started/for-developers/loadbalancing-and-cm-cd-environments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To learn more, read the [Load Balancing article](https://docs.umbraco.com/umbrac
3535

3636
## Bot detection (ping)
3737

38-
uMS will perform a ping (POST) to detect if the [visitor is a visitor or a bot](../../../../analytics/types-of-clients/). The `umbraco/engage/pagedata/ping` URL should be accessible from the content delivery and front-end servers. Make sure no firewall or other mechanism is blocking POST requests to `umbraco/engage/pagedata/ping`. If this URL is blocked, all visitors will be treated like a bot and no analytics data is collected.
38+
Umbraco Engage will perform a ping (POST) to detect if the [visitor is a visitor or a bot](../../../../analytics/types-of-clients/). The `umbraco/engage/pagedata/ping` URL should be accessible from the content delivery and front-end servers. Make sure no firewall or other mechanism is blocking POST requests to `umbraco/engage/pagedata/ping`. If this URL is blocked, all visitors will be treated like a bot and no analytics data is collected.
3939

4040
## Configuration
4141

13/umbraco-engage/getting-started/for-marketers-and-editors/marketing-resources/generic-popup-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const CookieService = {
6363
function checkCookie() {if (useCookie) { CookieService.setCookie(`engage` + popupName + `Shown`,true,cookieExpireDays);
6464
}};
6565

66-
function sendEvent(eventvalue) {ums("send", "event", "Popup", eventvalue, popupName);
66+
function sendEvent(eventvalue) {umbEngage("send", "event", "Popup", eventvalue, popupName);
6767
};
6868

6969
function hideModel() {const message = document.querySelector('.u-alert-message');message.remove();

13/umbraco-engage/getting-started/for-marketers-and-editors/marketing-resources/generic-topbar-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ If you like to use your website's font, you can set the `inheritFont` option to
7272

7373
## CSS
7474

75-
With the top bar set up, you can change the look to fit your website. Copy and paste this CSS into uMS and your top bar is ready.
75+
With the top bar set up, you can change the look to fit your website. Copy and paste this CSS into Umbraco Engage and your top bar is ready.
7676

7777
If you would like to change the colors, you can do that in the JavaScript file.
7878

13/umbraco-engage/installation/installation.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
---
22
description: >-
3-
Learn about the different ways available for installing Umbraco uMS on your
3+
Learn about the different ways available for installing Umbraco Engage on your
44
project.
55
---
66

77
# Installation
88

9-
This article covers two ways to install Umbraco uMS:
9+
This article covers two ways to install Umbraco Engage:
1010

1111
* [Via NuGet](installation.md#installation-via-nuget), or
1212
* [Via a terminal](installation.md#installing-using-the-terminal).
1313

1414
{% hint style="info" %}
15-
Check [the requirements](../getting-started/for-developers/system-requirements.md) before you start installing Umbraco uMS.
15+
Check [the requirements](../getting-started/for-developers/system-requirements.md) before you start installing Umbraco Engage.
1616
{% endhint %}
1717

1818
## Installation via NuGet
1919

20-
Install Umbraco uMS via Nuget in your IDE such as Visual Studio, JetBrains Rider, or VSCode (With [C# DevKit](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit)).
20+
Install Umbraco Engage via Nuget in your IDE such as Visual Studio, JetBrains Rider, or VSCode (With [C# DevKit](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit)).
2121

2222
The example shown below uses the Nuget Package Manager in Visual Studio.
2323

@@ -27,7 +27,7 @@ The example shown below uses the Nuget Package Manager in Visual Studio.
2727
![NuGet ](../.gitbook/assets/NuGet-Package-Manager.png)
2828

2929
3. Navigate to the **Browse** tab.
30-
4. Search for the **Umbraco uMS** package.
30+
4. Search for the **Umbraco.Engage** package.
3131
5. Select the package.
3232
6. Choose which project to install it into.
3333
7. Install the package.
@@ -36,24 +36,24 @@ The example shown below uses the Nuget Package Manager in Visual Studio.
3636

3737
## Installing using the terminal
3838

39-
You can install Umbraco uMS using a terminal, like the Package Manager Console in Visual Studio. The steps for doing so are outlined below.
39+
You can install Umbraco Engage using a terminal, like the Package Manager Console in Visual Studio. The steps for doing so are outlined below.
4040

4141
1. Open the project in Visual Studio.
4242
2. Find and open the Package Manager Console from the Tools menu.
4343
3. Type the following into the terminal:
4444

4545
```console
46-
PM> install-package Umbraco uMS
46+
PM> install-package Umbraco.Engage
4747
```
4848

49-
Alternatively, Umbraco uMS can be installed via the console on your operating machine.
49+
Alternatively, Umbraco Engage can be installed via the console on your operating machine.
5050

5151
1. Open a terminal window on your operating system.
5252
2. Navigate to the folder containing your Umbraco website.
53-
3. Install the Umbraco uMS Nuget package with the following command:
53+
3. Install the Umbraco Engage Nuget package with the following command:
5454

5555
```console
56-
dotnet add package Umbraco uMS
56+
dotnet add package Umbraco.Engage
5757
```
5858

5959
{% hint style="info" %}
@@ -64,11 +64,11 @@ If you have any trouble, please go to [Troubleshooting installs](../../../instal
6464

6565
![Engage section in the Umbraco Backoffice.](<../.gitbook/assets/image (4) (1).png>)
6666

67-
When you have installed the Umbraco uMS, build or restart your website, and the **Marketing** section will appear in the backoffice, as shown above.
67+
When you have installed Umbraco Engage, build or restart your website, and the **Marketing** section will appear in the backoffice, as shown above.
6868

6969
The next step is to [configure a license](../../../installing-umarketingsuite/licensing/).
7070

71-
It is recommended to consider the information detailed in the section below, to get the best out of Umbraco uMS.
71+
It is recommended to consider the information detailed in the section below, to get the best out of Umbraco Engage.
7272

7373
### Umbraco Forms
7474

@@ -100,7 +100,7 @@ To capture events that happen on the clientside (frontend) of your website, you
100100

101101
### Cockpit
102102

103-
Cockpit is a tool to help with testing segments and diagnose the data uMarkertingSuite collects. It can be viewed on the frontend of your website, only if you are logged into Umbraco as well.
103+
Cockpit is a tool to help with testing segments and diagnose the data Umbraco Engage collects. It can be viewed on the frontend of your website, only if you are logged into Umbraco as well.
104104

105105
Install cockpit on your website by adding the following Razor Partial View in your templates in Umbraco before the closing `</body>` tag
106106

@@ -112,23 +112,23 @@ Learn more [what Cockpit is and how you can use](../../../installing-umarketings
112112

113113
### Optional Extras
114114

115-
Here are some optional extras you can do to improve your experience with uMS.
115+
Here are some optional extras you can do to improve your experience with Umbraco Engage.
116116

117-
* Add a [Google Analytics bridging script](../../../analytics/clientside-events-and-additional-javascript-files/bridging-library-for-google-analytics/) that automatically sends events that you send to Google Analytics, to uMS as well.
117+
* Add a [Google Analytics bridging script](../../../analytics/clientside-events-and-additional-javascript-files/bridging-library-for-google-analytics/) that automatically sends events that you send to Google Analytics, to Umbraco Engage as well.
118118

119119
```html
120120
<script src="~/Assets/uMarketingSuite/Scripts/uMarketingSuite.analytics.ga4-bridge.min.js"></script>
121121
```
122122

123-
* Add the [Google Analytics blocker detection script](../../../analytics/clientside-events-and-additional-javascript-files/google-analytics-blocker-detection/). This gives you insights in which page traffic the uMS will track, and Google Analytics will not track.
123+
* Add the [Google Analytics blocker detection script](../../../analytics/clientside-events-and-additional-javascript-files/google-analytics-blocker-detection/). This gives you insights in which page traffic Umbraco Engage will track, and Google Analytics will not track.
124124

125125
```html
126126
<script src="/Assets/uMarketingSuite/Scripts/uMarketingSuite.analytics.blockerdetection.js"></script>
127127
```
128128

129129
### Cookie consent
130130

131-
If you need to influence the default [uMS cookie](../../../the-umarketingsuite-broad-overview/the-umarketingsuite-cookie/) behaviour please go [here](../../../security-privacy/gdpr/). Or go to an example [implementation using Cookiebot](../../../security-privacy/gdpr/how-to-become-gdpr-compliant-using-cookiebot/) which can be used as an example for other cookie consent providers.\\
131+
If you need to influence the default [The Umbraco Engage cookie](../../../the-umarketingsuite-broad-overview/the-umarketingsuite-cookie/) behaviour please go [here](../../../security-privacy/gdpr/). Or go to an example [implementation using Cookiebot](../../../security-privacy/gdpr/how-to-become-gdpr-compliant-using-cookiebot/) which can be used as an example for other cookie consent providers.\\
132132

133133
{% hint style="warning" %}
134134
If you [change the default cookie behaviour](../../../the-umarketingsuite-broad-overview/the-umarketingsuite-cookie/module-permissions/) make sure to perform a **client side reload of the initial page after cookie consent**. If this is not done, visitor referrer and/or campaigns will not be tracked.

0 commit comments

Comments
 (0)