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 , Thank you for posting to the Community! I'd like to tag in some Top Contributors to see if they have any advice on this one -- Hi ...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
Does anyone know if / how it's possible to find the highest and lowest number in a HubDB loop? I have a list of values displayed inside a table and I require the number to change colour via CSS if it's the highest / lowest.
Hi @ben-duchy , I used my doggie HubDB demo from before for this {% set table = hubdb_table_rows(module.hubdbtable_field) %}
{% set weight_ar...read more
When I want to display a set of rows, set in a specific order from HubDB, I would code it to look at a specific column, for example: {% for row in houses | sort(False, False, "house_number") %} However, is it possible to use multiple HubDB co read more
Hi @ben-duchy If I'm understanding correctly I think your best bet is to add those rows to an array and then sort that. Here's a quick demo I di...read more
I want to know how do I allow users to use my hubdb table created by me in thier table when they install my theme. (PS - this is for a theme uploaded in Marketplace)
Hi @MNongrum2 ,
It's just not possible as far as I know. HubSpot marketplace will flag your theme and block its submission if any module inclu...read more
I apologize if this is a poorly formulated question. I'm the marketing manager at a company with no in-house developer or access to developer resources, so I'm trying to troubleshoot on my own. We have a HubDB table that was created four years a read more
Hi I am trying to call HubDB row data base on a column select info. So if business_outcome is Increase Loyalty then use the data in that row only (image, title, decripction etc...) Currently this works by using the row id: {% set row read more
I have found a way to reduce the if statement by using the for statement as follows: {% set CategoryParam = "&business_outcome=" + dynamic_p...read more
I have a hubDB database to build dynamic pages with multiple resources (analyst reports, whitepapers etc. I have a single select column "resource_type. I've noticed that if I take the end slug from the resource and put it on the end of the exampl read more
Hi @TSwisher008
The main problem lies in the logic where it is finding an exact page match for the slug. i.e. dynamic_page_hubdb_row exists,...read more
Hi I am looking to be able to specify one of the select dropdown labels within the query. My code is: {% if dynamic_page_hubdb_row.business_outcomes.label %}
{% set row = hubdb_table_row(121356853, 191295276975) %}
{% endif %} The business outc read more
Hi Woodsy,
You’re on the right track, but HubL doesn’t let you use dynamic property names like `dynamic_page_hubdb_row.business_outcomes.<l...read more
I'm creating a new module that displays the options from a specific HubDB field and I would like to know whether it's possible to combine multiple calls or if they have to remain seperate? Current HubDB call examples: {% set bedrooms_list = hubdb read more
I have got a glossary list showing and am trying to add a dropdown filter and keyword search. The list is being pulled from a HubDB. I am trying to make the dropdown (column from HubDb called 'category2' and keyword search both update the list in re read more
We performed a deployment for a client this morning. We didn't touch the HubDB however, several pages within one section of the site were showing the wrong page content - that content was from other pages within the section of the site. Any i read more
@BarryGrennan by deployment, I mean we released some updates into their environment. I don't know whether the code change caused this issue or ...read more