A software company has developed an application which we can embed on our website. It uses a message event to push information to the parent window. I added a screenshot which shows the code in action. You can see how the message gets logged in read more
Hi Community! 👋
I’m reaching out because both a customer and I are experiencing an odd issue with a Saved Section, and I’m wondering if anyone else has encountered this, if it’s a HubSpot issue, or if there’s something wrong with the module read more
I have experienced some weirdness with saved sections before, and unfortunately, I was unable to pinpoint the root cause. Have you tried adding anoth...read more
Hey, @QC7 👋 Can you tell us more about your intended use case? Can you share an example of what you've already tried? These details are useful f...read more
I created a module containing buttons with a title. As I needed to have multiple buttons on my webpage, I placed the button in a repeater. How can I have a different background colour for each button in the repeater? (How can I make my styles editab read more
@ADuka - looks to me that you have done 99% of the work here for your goal 🙂
One way to get to 100% is adding css background module properties...read more
Hi I am creating a resource listing with filters. I am calling from a HubDb and am having trouble with a for loop with displying topics for each listing. If the item is tagged with one topic it shows in the filter dropdown. If another item has the read more
Hi Ernesto @ GiantFocal Thank you for your reply. The code has seperated out the topics in the dropdown. When I check one of the options in...read more
Hi I am trying to call Hubspot database items into a custom module using a HubDb row field. I can call text and images that are stored in the database but not multi select items. The field looks like this: Titles can be called using: {{ read more
Hi @Woodsy , Multi-select field return arrays; you can use a for loop to display the values. You can replace your {{ item.resource.columns....read more
Hi! I have a question regarding a custom module that is diplaying Blogs. I am grabbing all of the most recent Blog posts like this: {% set rec_posts = blog_recent_posts ( module . blog , 40) %} This is all working great read more
Hi @KWallace7 , You can replace the post's published date with the updated date instead. Please see the sample code provided below for reference...read more
How can we print values of repeater field (hubdb row) in the blog listing page?
{% set authors = widget_data.authors.select_authors %}
{% for item in authors %}
{{ item.columns.hs_id }}, {{ item.columns.hs_path }}
{% endfor %}
read more
Hi @Anton Sorry but it seems this is not the answer or solution.
I have asked how can we access custom module field values on the blog listti...read more
I created a hero section with a video as a background. I used uploaded video on hubspot. This is how the code looks like: <div class="hero-video-wrapper" id="hero-video-wrapper"> {% if module.hero_video.player_id %} {% set max_width = module. read more
Hi @MUlHuq ,
I would recommend switching from the "Video" field to a "File" field with a video selection. The "Video" field is more useful whe...read more
{% module "module_17324997345475" path="/MY THEME child/modules/my-module", label="sec-my-module" %} It seems to work properly when used in a template file. However, when the above code is inserted within a module, the following error read more
@TMisuna , HubSpot does not currently support nested modules. Could you please explain your use case? Perhaps repeater field can be the solutio...read more
Hi, I have added a cta to a custom module but it is showing as numbers. Please could you advise on why this is happening? Thanks Here is the code for the cta: {% if card.cta %}
<div style="display: flex">
read more
I am facing two specific problems with the code provided below. The data is being pulled directly from the CRM itself, as values of properties of product object entries. Product object entries are being used to define real estate properties, projec read more