I have created a multi-nested form with several hidden fields based on user selection that's used internally for our marketing team. You can view the page with the form here . Upon submission, this is sent to our project manager via the Send to o read more
Hello @swalker1 thanks for bringing this question to the community. For your security, I’ve edited your post to remove the links to your internal...read more
We're using {{ set_response_code(404) }} to manually trigger the 404 page under some circumstances.
This works fine, the 404 response code is set, and the 404-template is rendered instead of the template that triggered the 404.
We're als read more
Thanks. Just to clarify, it's only when we manually trigger a 404 using set_response_code() that this happens. Our 404-template is being rendered, bu...read more
I'm currently developing a bespoke customer portal and require a list of items held inside a deal property. Does anyone know if it's possible? Note: I'm aware that deal properties can only be accessed on a password / membership page. I have succ read more
All, I'm trying to work out what dumb thing I'm doing here. I have the following code in my table: {% if module.job_title != "hide" %}
<tr>
<td style="color:inherit; font-family:i read more
@Christensen , turns out that turning on the programmable email option solved things. It radically changed the way HUBL interpreted object propert...read more
Hey Developer Community, I’m noticing that our current HubSpot blog tag functionality only displays blogs for tags that have been used two or more times . If a tag is only used once, it doesn’t return any results when someone clicks that tag. read more
That’s a sharp observation it sounds like the current HubL logic or the underlying query might be grouping or filtering tags by occurrence count, whi...read more
The below code pulls content from a HubDB column called <overview_items> which contains foreign ID data. The data that is surrently being pulled is the name and id columns of the foreign ID table. {% for item in module.lp_select.columns.ov read more
Hi @Woodsy ,
To access other columns from a foreign ID table in HubDB, you need to use dot notation to reference the foreign table's fields.
Ins...read more
I have created a module that allows the creator to select a row from a Hubdb using a HubDB row field. I can then fetch the data from the HubDB row using the Landing Page Tile. I have set a column (overview_items) in the first HubDB t read more
Thank you Indra for your guidance. I have been trying to work this into my project but can't get the data to pull through into a list. The parent...read more
Hello everyone, In the code for a page, I have integrated an iframe whose URL must include the query string from the host URL. Here is the code I am using: {% set query_string = request.query|default("utm_source=site&utm_campaign=contact-e read more
Hi @SDEGLIAME , maybe a stupid question but since you are just checking the query parameters of the URL, did you make sure you are accessing the liv...read more
So, i use CMS React to build and mantain themes/websites.. since monday when i run "npm run start" in my project root every hubl-module or template dissapeared... Cannot even proxy..q
Hi everyone,
The HubSpot team has found the cause — a recent change removed a gating check from LocalDevAuth, but the dev server still expecte...read more
Hi We would like a form which a VAR completes with their name and the end customer that they are working with. We would like it so that the VAR company has all the associated deals for the various end customers. We have so far VAR completes read more
When I run a command like npx hs fetch --overwrite my-theme my-theme, the terminal shows the following error. Although I was able to fetch before, now it doesn’t work. How should I proceed to fix this issue? [ERROR] The post in account XXX was n read more
I am looking for a working example of the format_date or format_datetime filters. The problem: I want to display just the day of a datetime property. We used to be able to do this with the deprecated filter |datetimeformat("%d"). Now w read more
Ah such an easy solve, didn't spot that filter. Thank you! BTW, I also found another solution by adding a 'false' parameter on the crm_objects fu...read more