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

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

Category: Code Snippets

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

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

Category: Common Questions

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

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

Category: Common Questions

HubSpot Custom Module Boilerplate Code Snippet

Below is a some boilerplate code to use when creating a custom module inside HubSpot CMS. <div class=”module-class” id=”{{name}}”> <div class=”row-fluid”> </div> </div> {% require_css %} <style> {% scope_css %} {% end_scope_css %} </style> {% end_require_css %} {% require_js %} <script> window.addEventListener(“load”, (event) => { }); </script> {% end_require_js %}

Continue Reading

Category: Code Snippets

HubSpot Tutorial for Beginners: A Quick Overview

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

Category: Articles

Set Variable Values in a Loop and Use Elsewhere HubL HubSpot

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

Category: Code Snippets

How To Create a New CSS Stylesheet for HubSpot

For those utilizing HubSpot’s content management system (CMS), the ability to create new CSS stylesheets grants users immense flexibility in customizing the look and feel of their website. Whether it’s making minor tweaks to existing styles or implementing a complete overhaul of the site’s design, having control over CSS stylesheets is essential for achieving the… Read more »

Continue Reading

Category: Articles

How to Add Your Terms & Conditions to a Sales Quote in HubSpot?

Do you want to know which HubSpot Sales Hub tool you can use to add your terms of service to your quote? Three ways you could accomplish this Add a snippet of your terms of service to the quote each time you generate a quote Pros: Easy to setup and the snippets are nicely organized…. Read more »

Continue Reading

Category: Articles

HubSpot Related Posts Based on Tag Module [Code Snippet]

The code snippet below lists related posts based on the current post tags used. The HubSpot developer docs has a code example using a Javascript formatter but I was unable to get this to resize the featured image. So I created the code below to use a HubL macro instead. HubSpot Module HTML + HubL… Read more »

Continue Reading

Category: Code Snippets

New Page Templates and Modules added to the Industrial Pro HubSpot Theme

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… Read more »

Continue Reading

Category: Newsletter