Skip to content

Commit 2a4ec79

Browse files
authored
Merge pull request #580 from segmentio/repo-sync
repo sync
2 parents fa671ef + 53da716 commit 2a4ec79

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

src/_includes/components/actions-fields.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
{% assign settings = currentIntegration.settings %}
1717
{% assign actions = currentIntegration.actions %}
1818
{% assign presets = currentIntegration.presets %}
19+
{% assign hiddenActions = page.hide_action | map: "id"%}
1920

2021

2122
{% if settings.size > 0 %}
@@ -81,7 +82,6 @@
8182

8283
## Available Actions
8384

84-
8585
Build your own Mappings! Combine supported [triggers](/docs/connections/destinations/actions/#components-of-a-destination-action) with the following {{currentIntegration.display_name | remove: " (Actions)"}}-supported actions:
8686

8787
<div class="premonition info">
@@ -93,10 +93,13 @@
9393
</div>
9494

9595
{% for action in actions %}
96+
{% unless hiddenActions contains action.id %}
9697
- [{{action.name}}](#{{action.name | slugify}})
98+
{% endunless %}
9799
{% endfor %}
98100

99101
{% for action in actions %}
102+
{% unless hiddenActions contains action.id %}
100103
### {{action.name}}
101104
<p>{{action.description | markdownify}}</p>
102105
<p>{{action.name}} is a <strong>{{action.platform | capitalize}}</strong> action. The default Trigger is:</p> <code>{{action.defaultTrigger}}</code>
@@ -136,6 +139,6 @@
136139
{% else %}
137140
This action does not have any fields.
138141
{% endif %}
139-
142+
{% endunless %}
140143
{% endfor %}
141144

src/connections/destinations/catalog/actions-intercom-web/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ hide-dossier: false
55
hidden: true
66
private: true
77
id: 62d9daff84a6bf190da9f592
8+
hide_action:
9+
- id: 5W984Qq59XEQnFYKXKHGeZ
10+
name: "Update User"
11+
- id: nqdBJoXJwFrzwoL1y45LYt
12+
name: "Update Company"
813
versions:
914
- name: 'Intercom Cloud Mode (Actions)'
1015
link: '/docs/connections/destinations/catalog/actions-intercom-cloud'

src/guides/how-to-guides/cross-channel-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ If you do move key checkout events to the server side, you will have to manually
158158

159159
* **UTM parameters**: collecting the UTM params will allow you to tie conversion events to your marketing campaign or activities. This is valuable in that you can immediately measure performance and calculate ROI on your campaigns.
160160

161-
* **IP address**: the IP address can provide location intelligence for your customers. This means you can personalize your shopping experience or engagement emails with inventor that might be more relevant depending on your customers' locations.
161+
* **IP address**: the IP address can provide location intelligence for your customers. This means you can personalize your shopping experience or engagement emails with inventory that might be more relevant depending on your customers' locations.
162162

163163
* **User Agent**: the User Agent will inform you of your customers' preferred device and shopping experience. Are they converting on a mobile web browser? Native app? Or on their laptop?
164164

0 commit comments

Comments
 (0)