Google Search Document Leak & SEO Impact, New! I Created a UTM Campaign Builder Tool, Adding Custom Fonts to HubSpot | 3 Things Newsletter – June, 2024

Category: Newsletter

1. Google Search Document Leak & SEO Impact In late May, a bunch of documents leaked regarding how the Google search algorithm functioned. Granted this information could be outdated and not accurate to how everything is working. However, you can gain a lot of insights into what Google is looking for when it says to… Read more »

Continue Reading

Creating YouTube ads, custom behavioral events in HubSpot, and services business advice | 3 Things Newsletter – May, 2024

Category: Newsletter

1. How to create YouTube ads in Google Ads I recently wanted to experiment with creating an ad for one of my YouTube videos which was generating a few leads but sporadicly. So, I wanted to see if I could increase the views/leads with a discovery feed ad. I wrote down my YouTube Ads setup notes in… Read more »

Continue Reading

HubSpot CMS is now Content Hub, Avoid HubSpot Workflow Errors, GA4 Key Events | 3 Things Newsletter – April, 2024

Category: Newsletter

1. HubSpot CMS is Now… Content Hub HubSpot announced that HubSpot CMS is now expanding and being renamed Content Hub. In addition to their own CMS tools, they are adding more AI tools to make it easy to generate content. A key part I see is the distribution of this generated content. You can post… Read more »

Continue Reading

Google Helpful Content Update, New Keyword Wrapper Tool, Code for Marketers | 3 Things – March, 2024

Category: Newsletter

1. Google SEO Updates Google officially released INP for their core web vitals report in Google Search Console. Optimizing INP (interaction to next paint) should be prioritized by not being obsessed over it because it does not guarantee improvement in rankings. However, it does improve your customers’ user experience when viewing your website because nobody likes a slow-loading site. I also came… Read more »

Continue Reading

How to publish a page in development mode without HubSpot content staging [code snippet]

Category: Code Snippets

HubSpot has a nice feature called content staging which prevents search engines form crawling and indexing the content. But if you are using HubSpot CMS starter you won’t have access to this tool. So a work around is to add the following code to the HEAD of your base layout HTML file. This adds the… Read more »

Continue Reading

How to Uninstall a HubSpot Theme or Module from the HubSpot Marketplace

Category: Common Questions

Have you decided a HubSpot theme or module from the Marketplace isn’t the right fit for your website anymore? Uninstalling them is a breeze! This tutorial will walk you through the simple steps to remove both themes and modules from your HubSpot account, giving you back control over your website’s design and functionality. Below are the… Read more »

Continue Reading

How to Leave a Review on a HubSpot Module or Theme Downloaded from the HubSpot Marketplace

Category: Common Questions

Below are the steps to take to leave a review of a HubSpot marketplace module or theme. Log in to your HubSpot account and go to settings (gear icon) in the top right menu. Next, on the left side, click on Marketplace Downloads under Account Setup. Then toggle the Modules Tab On the module you… Read more »

Continue Reading

HubSpot Custom Module Boilerplate Code Snippet

Category: Code Snippets

Below is a some boilerplate code to use when creating a custom module inside HubSpot CMS. {# HubSpot uses different prefixes so this just gets the number module_######### widget_######### outputs just the number #} {% set instanceID = name[7:] %} {{ instanceID }} <div class=”module-class” id=”module{{instanceID}}”> <div class=”row-fluid”> <div class=”span6″>A</div> <div class=”span6″>B</div> </div> </div> {%… Read more »

Continue Reading

HubSpot Tutorial for Beginners: A Quick Overview

Category: Articles

HubSpot CRM is a cloud-based CRM platform that helps businesses track their leads and customers, automate their marketing campaigns, and provide excellent customer service. It’s designed to be easy to use, even for businesses with no prior CRM experience. This post will give you a quick overview of its main features and answer some common… Read more »

Continue Reading

Set Variable Values in a Loop and Use Elsewhere HubL HubSpot

Category: Code Snippets

When customizing a custom HubSpot quote template you may want to know what line items are present in the quote. You can then create conditional logic with a set of known values. The only problem is when you set a variable inside a loop it is not able to be referenced outside of the loop… Read more »

Continue Reading