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 続きを読む
Hey,
Your diagnosis is 100% correct -- and you've already figured out why the problem exists. Let me confirm what's happening so you can move forwa...続きを読む
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 続きを読む
Hi @_al , yeah that’s a maddening one, especially since “real” 404s and “forced” 404s look like they should be identical.
What’s happening under...続きを読む
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 続きを読む
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 続きを読む
@Christensen , turns out that turning on the programmable email option solved things. It radically changed the way HUBL interpreted object propert...続きを読む
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. 続きを読む
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...続きを読む
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 続きを読む
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...続きを読む
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 続きを読む
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...続きを読む
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 続きを読む
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...続きを読む
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 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 続きを読む
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 続きを読む
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 続きを読む
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...続きを読む