Posts Tagged: HubSpot Marketing Hub
Want to Receive Email Updates of New Articles About HubSpot Marketing Hub?
Join My Email NewsletterHubSpot CMS design and development tutorials and examples. HubSpot CMS review
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 […]
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> {% […]
How to Use HubSpot: 2026 Beginner’s Tutorial & Step-by-Step Guide
Category: Articles
HubSpot CRM is a cloud-based platform that helps businesses track leads, automate marketing, and provide excellent customer service. Designed for ease of use, it is ideal for businesses with no prior CRM experience. This 2026 guide provides a quick tutorial on how HubSpot works and its core features. How to Use HubSpot: 5-Step Quick Start […]
Why Your GA4 Traffic Data May Not Match HubSpot
Category: Common Questions
Now that Google Analytics 4 (GA4) is officially here. I wanted to share a hidden feature causing confusion when comparing website traffic reports in HubSpot vs. what was being shown in GA4. For a span of a few days, there was a spike in direct traffic in HubSpot, but in GA4, I did not see […]
New Page Templates and Modules added to the Industrial Pro HubSpot Theme
Category: Newsletter
I’ve recently added new features to my Industrial Pro theme for HubSpot. The overall goal of the updates was to make it better support manufacturing services and make it easier to build common pages most industrial companies have. Theme Feature Updates Include: New Page Templates Home 2The homepage template is great for metal fabricators and machine […]
HubSpot Email Banner Size Guide: Dimensions & Best Practices [2026]
Category: Common Questions
Last Updated: January 2026 | Guidelines for HubSpot & General Email Clients Optimizing your email design starts with the right dimensions, ensuring your brand looks professional and scales perfectly across every device. Quick Specs: HubSpot Email Header Size (2026) ✅ Recommended Dimensions: 600px width × 200px height Max File Size: Under 1MB (aim for < […]
Reasons Why I Recommend Creating a Child Theme BEFORE You Start Building HubSpot Pages
Category: Articles
When you download a HubSpot theme from the HubSpot marketplace, it can be exciting to jump right in and start building pages. This is OK for testing, but when you are ready to actually build your final website, I highly recommend you create a child theme first. In this post, I will explain what a […]
How to Load Script on One Domain and Exclude Previews in HubSpot [HubL Snippet]
Category: Code Snippets
The HubL code below will help you scope heatmap or anlytics tracking on one domain and exclude any previews. {% if request.domain == ‘www.yourdomain.com’ and request.query is not string_containing ‘hs_preview’ %} {% endif %}
How to Add, Move, Edit, and Delete HubSpot Modules
Category: Newsletter
In this HubSpot tutorial video, I’ll show you how to add, move, edit, and delete modules in HubSpot CMS. If you’re looking to manage your content and templates more effectively, then this video is for you! This video will provide you with step-by-step instructions on how to add, move, edit, and delete modules in HubSpot […]
Custom HubSpot Development Tutorial: How to Create a Custom Module [video]
Category: Newsletter
In this custom HubSpot development tutorial, I will demonstrate how to create a custom module in HubSpot using HTML and HubL code. I will be building a product attributes list inspired by one found on Amazon product listings. A good way to think of how HubSpot custom modules work is by comparing it to a […]