How to Set Up GTM Cookie Tracking (and Better Understand Content Engagement)
Posted by Joel.Mesherghi
The more you understand the behaviour of your users, the better you can market your product or service — which is why Google Tag Manager (GTM) is a marketer's best friend. With built-in tag templates, such as scroll depth and click tracking, GTM is a powerful tool to measure the engagement and success of your content.
If you’re only relying on tag templates in GTM, or the occasionally limiting out-of-box Google Analytics, then you could be missing out on insights that go beyond normal engagement metrics. Which means you may be getting an incomplete story from your data.
This post will teach you how to get even more insight by setting up cookies in GTM. You'll learn how to tag and track multiple page views in a single session, track a specific set number of pages, based on specific on-page content elements, and understand how users are engaging with your content so you can make data-based decisions to better drive conversions.
Example use case
I recently worked with a client that wanted to better understand the behavior of users that landed on their blog content. The main barrier they faced was their URL structure. Their content didn’t live on logical URL structures — they placed their target keyword straight after the root. So, instead of example.com/blog/some-content, their URL structure looked like example.com/some-content.
You can use advanced segments in Google Analytics (GA) to track any number of metrics, but if you don’t have a logically defined URL, then tracking and measuring those metrics becomes a manual and time-consuming practice — especially when there’s a large number of pages to track.
Fortunately, leveraging a custom cookie code, which I provide below, helps you to cut through that time, requires little implementation effort, and can surface powerful insights:
- It can indicate that users are engaged with your content and your brand.
- The stored data could be used for content scoring — if a page is included in the three pages of an event it may be more valuable than others. You may want to target these pages with more upsell or cross-sell opportunities, if so.
- The same scoring logic could apply to authors. If blogs written by certain authors have more page views in a session, then their writing style/topics could be more engaging and you may want to further leverage their content writing skills.
- You can build remarketing audience lists to target these seemingly engaged users to align with your business goals — people who are more engaged with your content could be more likely to convert.
So, let’s briefly discuss the anatomy of the custom code that you will need to add to set cookies before we walk through a step by step implementation guide.
Custom cookie code
Cookies, as we all know, are a small text file that is stored in your browser — it helps servers remember who you are and its code is comprised of three elements:
- a name-value pair containing data
- an expiry date after which it is no longer valid
- the domain and path of the server it should be sent to.
You can create a custom code to add to cookies to help you track and store numerous page views in a session across a set of pages.
The code below forms the foundation in setting up your cookies. It defines specific rules, such as the events required to trigger the cookie and the expiration of the cookie. I'll provide the code, then break it up into two parts to explain each segment.
The code
<script> function createCookie(name,value,hours) {
if (hours) { var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000)); var expires = "; expires="+date.toGMTString();
} else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; }
if (document.querySelectorAll("CSS SELECTOR GOES HERE"").length > 0) { var y = {{NumberOfBlogPagesVisited}}
if (y == null) { createCookie('BlogPagesVisited',1,1);
} else if (y == 1) {
createCookie('BlogPagesVisited',2,1); }
else if (y == 2) { var newCount = Number(y) + 1;
createCookie('BlogPagesVisited',newCount,12); }
if (newCount == 3) {
dataLayer.push({ 'event': '3 Blog Pages'
}); }
} </script>
Part 1
<script> function createCookie(name,value,hours) {
if (hours) { var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000)); var expires = "; expires="+date.toGMTString();
} else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; }
Explanation:
This function, as the name implies, will create a cookie if you specify a name, a value, and the time a cookie should be valid for. I’ve specified "hours," but if you want to specify "days," you’ll need to iterate variables of the code. Take a peek at this great resource on setting up cookies.
Part 2
if (document.querySelectorAll("CSS SELECTOR GOES HERE").length > 0) { var y = {{NumberOfBlogPagesVisited}}
if (y == null) { createCookie('BlogPagesVisited',1,1);
} else if (y == 1) {
createCookie('BlogPagesVisited',2,1); }
else if (y == 2) { var newCount = Number(y) + 1;
createCookie('BlogPagesVisited',newCount,12); }
if (newCount == 3) {
dataLayer.push({ 'event': '3 Blog Pages'
}); }
</script>
Explanation:
The second part of this script will count the number of page views:
- The “CSS SELECTOR GOES HERE”, which I’ve left blank for now, will be where you add your CSS selector. This will instruct the cookie to fire if the CSS selector matches an element on a page. You can use DevTools to hover over an on-page element, like an author name, and copy the CSS selector.
- “y” represents the cookie and "NumberOfBlogPagesVisited" is the name I’ve given to the variable. You’ll want to iterate the variable name as you see fit, but the variable name you set up in GTM should be consistent with the variable name in the code (we’ll go through this during the step-by-step guide).
- “createCookie” is the actual name of your cookie. I’ve called my cookie "BlogPagesVisited." You can call your cookie whatever you want, but again, it’s imperative that the name you give your cookie in the code is consistent with the cookie name field when you go on to create your variable in GTM. Without consistency, the tag won’t fire correctly.
- You can also change the hours at which the cookie expires. If a user accumulates three page views in a single session, the code specifies a 12 hour expiration. The reasoning behind this is that if someone comes back after a day or two and views another blog, we won’t consider that to be part of the same "session," giving us a clearer insight of the user behaviour of people that trigger three page views in a session.
- This is rather arbitrary, so you can iterate the cookie expiration length to suit your business goals and customers.
Note: if you want the event to fire after more than three page views (for example, four-page views) then the code would look like the following:
var y = {{NumberOfBlogPagesVisited}} if (y == null) {
createCookie('BlogPagesVisited',1,1); }
else if (y == 1) { createCookie('BlogPagesVisited',2,1);
} }
else if (y == 2) { createCookie('BlogPagesVisited',3,1);
} else if (y == 3) {
var newCount = Number(y) + 1; createCookie('BlogPagesVisited',newCount,12);
}
if (newCount == 4) { dataLayer.push({
'event': '4 Blog Pages' });
Now that we have a basic understanding of the script, we can use GTM to implement everything.
First, you’ll need the set up the following "Tags," "Triggers", and "Variables":
Tags
Custom HTML tag: contains the cookie script
Event tag: fires the event and sends the data to GA after a third pageview is a session.
Triggers
Page View trigger: defines the conditions that will fire your Custom HTML Tag.
Custom Event trigger: defines the conditions that will fire your event.
Variable
First Party Cookie variable: This will define a value that a trigger needs to evaluate whether or not your Custom HTML tag should fire.
Now, let's walk through the steps of setting this up in GTM.
Step 1: Create a custom HTML tag
First, we'll need to create a Custom HTML Tag that will contain the cookie script. This time, I’ve added the CSS selector, below:
#content > div.post.type-post.status-publish.format-standard.hentry > div.entry-meta > span > span.author.vcard > a
This matches authors on Distilled’s blog pages, so you’ll want to add your own unique selector.
Navigate to Tags > New > Custom HTML Tag > and paste the script into the custom HTML tag box.
You’ll want to ensure your tag name is descriptive and intuitive. Google recommends the following tag naming convention: Tag Type - Detail - Location. This will allow you to easily identify and sort related tags from the overview tag interface. You can also create separate folders for different projects to keep things more organized.
Following Google's example, I’ve called my tag Custom HTML - 3 Page Views Cookie - Blog.
Once you’ve created your tag, remember to click save.
Step 2: Create a trigger
Creating a trigger will define the conditions that will fire your custom HTML tag. If you want to learn more about triggers, you can read up on Simo Ahava’s trigger guide.
Navigate to Triggers > New > PageView.
Once you’ve clicked the trigger configuration box, you’ll want to select “Page View” as a trigger type. I’ve also named my trigger Page View - Cookie Trigger - Blog, as I’m going to set up the tag to fire when users land on blog content.
Next, you’ll want to define the properties of your trigger.
Since we’re relying on the CSS selector to trigger the cookie across the site, select “All Page Views”.
Once you’ve defined your trigger, click save.
Step 3: Create your variable
Just like how a Custom HTML tag relies on a trigger to fire, a trigger relies on a variable. A variable defines a value that a trigger needs to evaluate whether or not a tag should fire. If you want to learn more about variables, I recommend reading up on Simo Ahava’s variable guide.
Head over to Variables > User-Defined Variables > Select 1st Party Cookie. You’ll also notice that I’ve named this variable “NumberOfBlogPagesVisited” — you’ll want this variable name to match what is in your cookie code.
Having selected “1st Party Cookie," you’ll now need to input your cookie name. Remember: the cookie name needs to replicate the name you’ve given your cookie in the code. I named my cookie BlogPagesVisited, so I’ve replicated that in the Cookie Name field, as seen below.
Step 4: Create your event tag
When a user triggers a third-page view, we'll want to have it recorded and sent to GA. To do this, we need to set up an "Event" tag.
First, navigate to Tags > New > Select Google Analytics - Universal Analytics:
Once you’ve made your tag type “Google Analytics - Universal Analytics”, make sure track type is an “Event” and you name your "Category" and "Action" accordingly. You can also fill in a label and value if you wish. I’ve also selected “True” in the “Non-interaction Hit” field, as I still want to track bounce rate metrics.
Finally, you’ll want to select a GA Setting variable that will pass on stored cookie information to a GA property.
Step 5: Create your trigger
This trigger will reference your event.
Navigate to Trigger > New > Custom Event
Once you’ve selected Custom Event, you’ll want to ensure the “Event name” field matches the name you have given your event in the code. In my case, I called the event “3 Blog Pages”.
Step 6: Audit your cookie in preview mode
After you’ve selected the preview mode, you should conduct an audit of your cookie to ensure everything is firing properly. To do this, navigate to the site you where you’ve set up cookies.
Within the debugging interface, head on over to Page View > Variables.
Next, look to a URL that contains the CSS selector. In the case of the client, we used the CSS selector that referenced an on-page author. All their content pages used the same CSS selector for authors. Using the GTM preview tool you’ll see that “NumberOfBlogPagesVisited” variable has been executed.
And the actual “BlogPagesVisited” cookie has fired at a value of “1” in Chrome DevTools. To see this, click Inspect > Application > Cookies.
If we skip the second-page view and execute our third-page view on another blog page, you’ll see that both our GA event and our Custom HTML tag fired, as it’s our third-page view.
You’ll also see the third-page view triggered our cookie value of “3” in Chrome DevTools.
Step 7: Set up your advanced segment
Now that you’ve set up your cookie, you’ll want to pull the stored cookie data into GA, which will allow you to manipulate the data as you see fit.
In GA, go to Behaviour > Events > Overview > Add Segment > New Segment > Sequences > Event Action > and then add the event name you specified in your event tag. I specified “3 Blog Page Views."
And there you have it!
Conclusion
Now that you know how to set up a cookie in GTM, you can get heaps of additional insight into the engagement of your content.
You also know how also to play around with the code snippet and iterate the number of page views required to fire the cookie event as well as the expiration of the cookies at each stage to suit your needs.
I’d be interested to hear what other use cases you can think of for this cookie, or what other types of cookies you set up in GTM and what data you get from them.
Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don't have time to hunt down but want to read!
Related Posts
How to Set Up GTM Cookie Tracking (and Better Understand Content Engagement)
Posted by Joel.Mesherghi
The more you understand the behaviour of your users, the better you can market your product or service — which is why Google Tag Manager (GTM) is a marketer's best friend. With built-in tag templates, such as scroll depth and click tracking, GTM is a powerful tool to measure the engagement and success of your content.
If you’re only relying on tag templates in GTM, or the occasionally limiting out-of-box Google Analytics, then you could be missing out on insights that go beyond normal engagement metrics. Which means you may be getting an incomplete story from your data.
This post will teach you how to get even more insight by setting up cookies in GTM. You'll learn how to tag and track multiple page views in a single session, track a specific set number of pages, based on specific on-page content elements, and understand how users are engaging with your content so you can make data-based decisions to better drive conversions.
Example use case
I recently worked with a client that wanted to better understand the behavior of users that landed on their blog content. The main barrier they faced was their URL structure. Their content didn’t live on logical URL structures — they placed their target keyword straight after the root. So, instead of example.com/blog/some-content, their URL structure looked like example.com/some-content.
You can use advanced segments in Google Analytics (GA) to track any number of metrics, but if you don’t have a logically defined URL, then tracking and measuring those metrics becomes a manual and time-consuming practice — especially when there’s a large number of pages to track.
Fortunately, leveraging a custom cookie code, which I provide below, helps you to cut through that time, requires little implementation effort, and can surface powerful insights:
- It can indicate that users are engaged with your content and your brand.
- The stored data could be used for content scoring — if a page is included in the three pages of an event it may be more valuable than others. You may want to target these pages with more upsell or cross-sell opportunities, if so.
- The same scoring logic could apply to authors. If blogs written by certain authors have more page views in a session, then their writing style/topics could be more engaging and you may want to further leverage their content writing skills.
- You can build remarketing audience lists to target these seemingly engaged users to align with your business goals — people who are more engaged with your content could be more likely to convert.
So, let’s briefly discuss the anatomy of the custom code that you will need to add to set cookies before we walk through a step by step implementation guide.
Custom cookie code
Cookies, as we all know, are a small text file that is stored in your browser — it helps servers remember who you are and its code is comprised of three elements:
- a name-value pair containing data
- an expiry date after which it is no longer valid
- the domain and path of the server it should be sent to.
You can create a custom code to add to cookies to help you track and store numerous page views in a session across a set of pages.
The code below forms the foundation in setting up your cookies. It defines specific rules, such as the events required to trigger the cookie and the expiration of the cookie. I'll provide the code, then break it up into two parts to explain each segment.
The code
<script> function createCookie(name,value,hours) {
if (hours) { var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000)); var expires = "; expires="+date.toGMTString();
} else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; }
if (document.querySelectorAll("CSS SELECTOR GOES HERE"").length > 0) { var y = {{NumberOfBlogPagesVisited}}
if (y == null) { createCookie('BlogPagesVisited',1,1);
} else if (y == 1) {
createCookie('BlogPagesVisited',2,1); }
else if (y == 2) { var newCount = Number(y) + 1;
createCookie('BlogPagesVisited',newCount,12); }
if (newCount == 3) {
dataLayer.push({ 'event': '3 Blog Pages'
}); }
} </script>
Part 1
<script> function createCookie(name,value,hours) {
if (hours) { var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000)); var expires = "; expires="+date.toGMTString();
} else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; }
Explanation:
This function, as the name implies, will create a cookie if you specify a name, a value, and the time a cookie should be valid for. I’ve specified "hours," but if you want to specify "days," you’ll need to iterate variables of the code. Take a peek at this great resource on setting up cookies.
Part 2
if (document.querySelectorAll("CSS SELECTOR GOES HERE").length > 0) { var y = {{NumberOfBlogPagesVisited}}
if (y == null) { createCookie('BlogPagesVisited',1,1);
} else if (y == 1) {
createCookie('BlogPagesVisited',2,1); }
else if (y == 2) { var newCount = Number(y) + 1;
createCookie('BlogPagesVisited',newCount,12); }
if (newCount == 3) {
dataLayer.push({ 'event': '3 Blog Pages'
}); }
</script>
Explanation:
The second part of this script will count the number of page views:
- The “CSS SELECTOR GOES HERE”, which I’ve left blank for now, will be where you add your CSS selector. This will instruct the cookie to fire if the CSS selector matches an element on a page. You can use DevTools to hover over an on-page element, like an author name, and copy the CSS selector.
- “y” represents the cookie and "NumberOfBlogPagesVisited" is the name I’ve given to the variable. You’ll want to iterate the variable name as you see fit, but the variable name you set up in GTM should be consistent with the variable name in the code (we’ll go through this during the step-by-step guide).
- “createCookie” is the actual name of your cookie. I’ve called my cookie "BlogPagesVisited." You can call your cookie whatever you want, but again, it’s imperative that the name you give your cookie in the code is consistent with the cookie name field when you go on to create your variable in GTM. Without consistency, the tag won’t fire correctly.
- You can also change the hours at which the cookie expires. If a user accumulates three page views in a single session, the code specifies a 12 hour expiration. The reasoning behind this is that if someone comes back after a day or two and views another blog, we won’t consider that to be part of the same "session," giving us a clearer insight of the user behaviour of people that trigger three page views in a session.
- This is rather arbitrary, so you can iterate the cookie expiration length to suit your business goals and customers.
Note: if you want the event to fire after more than three page views (for example, four-page views) then the code would look like the following:
var y = {{NumberOfBlogPagesVisited}} if (y == null) {
createCookie('BlogPagesVisited',1,1); }
else if (y == 1) { createCookie('BlogPagesVisited',2,1);
} }
else if (y == 2) { createCookie('BlogPagesVisited',3,1);
} else if (y == 3) {
var newCount = Number(y) + 1; createCookie('BlogPagesVisited',newCount,12);
}
if (newCount == 4) { dataLayer.push({
'event': '4 Blog Pages' });
Now that we have a basic understanding of the script, we can use GTM to implement everything.
First, you’ll need the set up the following "Tags," "Triggers", and "Variables":
Tags
Custom HTML tag: contains the cookie script
Event tag: fires the event and sends the data to GA after a third pageview is a session.
Triggers
Page View trigger: defines the conditions that will fire your Custom HTML Tag.
Custom Event trigger: defines the conditions that will fire your event.
Variable
First Party Cookie variable: This will define a value that a trigger needs to evaluate whether or not your Custom HTML tag should fire.
Now, let's walk through the steps of setting this up in GTM.
Step 1: Create a custom HTML tag
First, we'll need to create a Custom HTML Tag that will contain the cookie script. This time, I’ve added the CSS selector, below:
#content > div.post.type-post.status-publish.format-standard.hentry > div.entry-meta > span > span.author.vcard > a
This matches authors on Distilled’s blog pages, so you’ll want to add your own unique selector.
Navigate to Tags > New > Custom HTML Tag > and paste the script into the custom HTML tag box.
You’ll want to ensure your tag name is descriptive and intuitive. Google recommends the following tag naming convention: Tag Type - Detail - Location. This will allow you to easily identify and sort related tags from the overview tag interface. You can also create separate folders for different projects to keep things more organized.
Following Google's example, I’ve called my tag Custom HTML - 3 Page Views Cookie - Blog.
Once you’ve created your tag, remember to click save.
Step 2: Create a trigger
Creating a trigger will define the conditions that will fire your custom HTML tag. If you want to learn more about triggers, you can read up on Simo Ahava’s trigger guide.
Navigate to Triggers > New > PageView.
Once you’ve clicked the trigger configuration box, you’ll want to select “Page View” as a trigger type. I’ve also named my trigger Page View - Cookie Trigger - Blog, as I’m going to set up the tag to fire when users land on blog content.
Next, you’ll want to define the properties of your trigger.
Since we’re relying on the CSS selector to trigger the cookie across the site, select “All Page Views”.
Once you’ve defined your trigger, click save.
Step 3: Create your variable
Just like how a Custom HTML tag relies on a trigger to fire, a trigger relies on a variable. A variable defines a value that a trigger needs to evaluate whether or not a tag should fire. If you want to learn more about variables, I recommend reading up on Simo Ahava’s variable guide.
Head over to Variables > User-Defined Variables > Select 1st Party Cookie. You’ll also notice that I’ve named this variable “NumberOfBlogPagesVisited” — you’ll want this variable name to match what is in your cookie code.
Having selected “1st Party Cookie," you’ll now need to input your cookie name. Remember: the cookie name needs to replicate the name you’ve given your cookie in the code. I named my cookie BlogPagesVisited, so I’ve replicated that in the Cookie Name field, as seen below.
Step 4: Create your event tag
When a user triggers a third-page view, we'll want to have it recorded and sent to GA. To do this, we need to set up an "Event" tag.
First, navigate to Tags > New > Select Google Analytics - Universal Analytics:
Once you’ve made your tag type “Google Analytics - Universal Analytics”, make sure track type is an “Event” and you name your "Category" and "Action" accordingly. You can also fill in a label and value if you wish. I’ve also selected “True” in the “Non-interaction Hit” field, as I still want to track bounce rate metrics.
Finally, you’ll want to select a GA Setting variable that will pass on stored cookie information to a GA property.
Step 5: Create your trigger
This trigger will reference your event.
Navigate to Trigger > New > Custom Event
Once you’ve selected Custom Event, you’ll want to ensure the “Event name” field matches the name you have given your event in the code. In my case, I called the event “3 Blog Pages”.
Step 6: Audit your cookie in preview mode
After you’ve selected the preview mode, you should conduct an audit of your cookie to ensure everything is firing properly. To do this, navigate to the site you where you’ve set up cookies.
Within the debugging interface, head on over to Page View > Variables.
Next, look to a URL that contains the CSS selector. In the case of the client, we used the CSS selector that referenced an on-page author. All their content pages used the same CSS selector for authors. Using the GTM preview tool you’ll see that “NumberOfBlogPagesVisited” variable has been executed.
And the actual “BlogPagesVisited” cookie has fired at a value of “1” in Chrome DevTools. To see this, click Inspect > Application > Cookies.
If we skip the second-page view and execute our third-page view on another blog page, you’ll see that both our GA event and our Custom HTML tag fired, as it’s our third-page view.
You’ll also see the third-page view triggered our cookie value of “3” in Chrome DevTools.
Step 7: Set up your advanced segment
Now that you’ve set up your cookie, you’ll want to pull the stored cookie data into GA, which will allow you to manipulate the data as you see fit.
In GA, go to Behaviour > Events > Overview > Add Segment > New Segment > Sequences > Event Action > and then add the event name you specified in your event tag. I specified “3 Blog Page Views."
And there you have it!
Conclusion
Now that you know how to set up a cookie in GTM, you can get heaps of additional insight into the engagement of your content.
You also know how also to play around with the code snippet and iterate the number of page views required to fire the cookie event as well as the expiration of the cookies at each stage to suit your needs.
I’d be interested to hear what other use cases you can think of for this cookie, or what other types of cookies you set up in GTM and what data you get from them.
Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don't have time to hunt down but want to read!
Categories
- 60% of the time… (1)
- A/B Testing (2)
- Ad placements (3)
- adops (4)
- adops vs sales (5)
- AdParlor 101 (43)
- adx (1)
- algorithm (1)
- Analysis (9)
- Apple (1)
- Audience (1)
- Augmented Reality (1)
- authenticity (1)
- Automation (1)
- Back to School (1)
- best practices (2)
- brand voice (1)
- branding (1)
- Build a Blog Community (12)
- Case Study (3)
- celebrate women (1)
- certification (1)
- Collections (1)
- Community (1)
- Conference News (1)
- conferences (1)
- content (1)
- content curation (1)
- content marketing (1)
- contests (1)
- Conversion Lift Test (1)
- Conversion testing (1)
- cost control (2)
- Creative (6)
- crisis (1)
- Curation (1)
- Custom Audience Targeting (4)
- Digital Advertising (2)
- Digital Marketing (6)
- DPA (1)
- Dynamic Ad Creative (1)
- dynamic product ads (1)
- E-Commerce (1)
- eCommerce (2)
- Ecosystem (1)
- email marketing (3)
- employee advocacy program (1)
- employee advocates (1)
- engineers (1)
- event marketing (1)
- event marketing strategy (1)
- events (1)
- Experiments (21)
- F8 (2)
- Facebook (64)
- Facebook Ad Split Testing (1)
- facebook ads (18)
- Facebook Ads How To (1)
- Facebook Advertising (30)
- Facebook Audience Network (1)
- Facebook Creative Platform Partners (1)
- facebook marketing (1)
- Facebook Marketing Partners (2)
- Facebook Optimizations (1)
- Facebook Posts (1)
- facebook stories (1)
- Facebook Updates (2)
- Facebook Video Ads (1)
- Facebook Watch (1)
- fbf (11)
- first impression takeover (5)
- fito (5)
- Fluent (1)
- Get Started With Wix Blog (1)
- Google (9)
- Google Ad Products (5)
- Google Analytics (1)
- Guest Post (1)
- Guides (32)
- Halloween (1)
- holiday marketing (1)
- Holiday Season Advertising (7)
- Holiday Shopping Season (4)
- Holiday Video Ads (1)
- holidays (4)
- Hootsuite How-To (3)
- Hootsuite Life (1)
- how to (5)
- How to get Instagram followers (1)
- How to get more Instagram followers (1)
- i don't understand a single thing he is or has been saying (1)
- if you need any proof that we're all just making it up (2)
- Incrementality (1)
- influencer marketing (1)
- Infographic (1)
- Instagram (39)
- Instagram Ads (11)
- Instagram advertising (8)
- Instagram best practices (1)
- Instagram followers (1)
- Instagram Partner (1)
- Instagram Stories (2)
- Instagram tips (1)
- Instagram Video Ads (2)
- invite (1)
- Landing Page (1)
- link shorteners (1)
- LinkedIn (22)
- LinkedIn Ads (2)
- LinkedIn Advertising (2)
- LinkedIn Stats (1)
- LinkedIn Targeting (5)
- Linkedin Usage (1)
- List (1)
- listening (2)
- Lists (3)
- Livestreaming (1)
- look no further than the new yorker store (2)
- lunch (1)
- Mac (1)
- macOS (1)
- Marketing to Millennials (2)
- mental health (1)
- metaverse (1)
- Mobile App Marketing (3)
- Monetizing Pinterest (2)
- Monetizing Social Media (2)
- Monthly Updates (10)
- Mothers Day (1)
- movies for social media managers (1)
- new releases (11)
- News (72)
- News & Events (13)
- no one knows what they're doing (2)
- OnlineShopping (2)
- or ari paparo (1)
- owly shortener (1)
- Paid Media (2)
- People-Based Marketing (3)
- performance marketing (5)
- Pinterest (34)
- Pinterest Ads (11)
- Pinterest Advertising (8)
- Pinterest how to (1)
- Pinterest Tag helper (5)
- Pinterest Targeting (6)
- platform health (1)
- Platform Updates (8)
- Press Release (2)
- product catalog (1)
- Productivity (10)
- Programmatic (3)
- quick work (1)
- Reddit (3)
- Reporting (1)
- Resources (34)
- ROI (1)
- rules (1)
- Seamless shopping (1)
- share of voice (1)
- Shoppable ads (4)
- Skills (28)
- SMB (1)
- SnapChat (28)
- SnapChat Ads (8)
- SnapChat Advertising (5)
- Social (169)
- social ads (1)
- Social Advertising (14)
- social customer service (1)
- Social Fresh Tips (1)
- Social Media (5)
- social media automation (1)
- social media content calendar (1)
- social media for events (1)
- social media management (2)
- Social Media Marketing (49)
- social media monitoring (1)
- Social Media News (4)
- social media statistics (1)
- social media tracking in google analytics (1)
- social media tutorial (2)
- Social Toolkit Podcast (1)
- Social Video (5)
- stories (1)
- Strategy (603)
- terms (1)
- Testing (2)
- there are times ive found myself talking to ari and even though none of the words he is using are new to me (1)
- they've done studies (1)
- this is also true of anytime i have to talk to developers (1)
- tiktok (8)
- tools (1)
- Topics & Trends (3)
- Trend (12)
- Twitter (15)
- Twitter Ads (5)
- Twitter Advertising (4)
- Uncategorised (9)
- Uncategorized (13)
- url shortener (1)
- url shorteners (1)
- vendor (2)
- video (10)
- Video Ads (7)
- Video Advertising (8)
- virtual conference (1)
- we're all just throwing mountains of shit at the wall and hoping the parts that stick don't smell too bad (2)
- web3 (1)
- where you can buy a baby onesie of a dog asking god for his testicles on it (2)
- yes i understand VAST and VPAID (1)
- yes that's the extent of the things i understand (1)
- YouTube (13)
- YouTube Ads (4)
- YouTube Advertising (9)
- YouTube Video Advertising (5)