Where can you view all of your downloaded HubSpot templates and modules?

Category: Common Questions

If you download a HubSpot theme or module from their marketplace there is a spot for you to manage these assets. You can update them, reinstall, or write a review. Below are two ways to find this purchase management panel Option 1 – HubSpot Asset Marketplace Homepage Visit the HubSpot marketplace homepage and click the… Read more »

Continue Reading

Comprehensive HubSpot CMS Review vs. WordPress

Category: Common Questions

One of the most critical decisions for a business is where to host its website, and a CMS or content management system is a crucial component. Some companies with an internal IT team prefer to self-host their CMS using open-source software like WordPress because they require higher-level security or business integrations. However, a growing trend… Read more »

Continue Reading

Embed HubSpot Form in WordPress, Customize CSS, and Hide Fieldset Margins on Hidden Fields [code snippet]

Category: Code Snippets

When you embed a HubSpot form on an external site you can add css: ‘ ‘ to the embed code to remove the default form styles. If you have hidden fields the fieldset could have a margin or padding applied from your website stylesheet. This is common because you want a fieldset to have some… Read more »

Continue Reading

How to Remove Default HubSpot CTA Styles

Category: Code Snippets

HubSpot allows marketers to create custom styled CTA buttons. This can be a problem if you have a large team who may not know how to follow brand guidelines. This creative freedom can make buttons look inconsistent across your website. You could educate all of your users to never create custom styles. Or you could… Read more »

Continue Reading

How Do You Change the Primary Domain in HubSpot CMS?

Category: Common Questions

If you are looking to rebrand your website and change its domain there are a few steps you can take. You will most likely land on this HubSpot knowledge base article which outlines the steps but if you read it quickly you might miss a critical piece of information. At the very bottom there is… Read more »

Continue Reading

How to Fix HubSpot Website Your Connection is Not Private or Your Page is Unavailable Not Found – redirect Apex non www

Category: Common Questions

HubSpot requires using CNAME to point a domain to their server using a subdomain. This means you still have an A record to worry about. The www in your www.yourdomain.com is a subdomain and not a root domain that does not have the www. It is the same as blog.yourdomain.com or mail.yourdomain.com. In order to fix… Read more »

Continue Reading

How to Link to Module Fields to Theme Images in HubSpot Themes

Category: Code Snippets

When building HubSpot themes you often want to have default images referenced from inside your theme folder. You would think adding a relative link would work but you actually need to add it inside this hubl function to get it to work get_asset_url() Learn more about building custom modules in HubSpot. “default” : { “src”… Read more »

Continue Reading

How to Update Navigation Menu in HubSpot Content Staging

Category: Code Snippets

When using content staging in HubSpot you can easily test and preview design changes but the menu does not update to use the new staging domain. So you have to preview each page individually. This can be an issue when you are working on a HubSpot website rebrand and the client needs to click through… Read more »

Continue Reading

How to Have a HubSpot Menu Load the Default Menu When Transferring to Another Account

Category: Common Questions

Problem: When transferring a HubSpot theme or template file to another portal global module’s menu disappears. The code snippet below sets the default menu tag to pull a default if it is not selected. {% set menu = module.menu is truthy ? menu(module.menu) : menu(‘default’) %} {% menu “menu” %}  

Continue Reading

HubSpot Themes vs Templates – What is the Difference?

Category: Common Questions

Previously it was possible to download HubSpot template packs from the HubSpot marketplace. These were a collection of landing page, website page, blog, and email templates. The downside of these packs is they did not share any unified settings and they were not very portable between accounts. Now a group of templates, custom modules, and… Read more »

Continue Reading