My orginization used a HubDB for a table on our website. This is a large table of around 1500 rows, so it’s being limited by Hubspots table limit of 1000. What would be the easiest way to extend this limit? So far most of my research involves custom scripting, but it seems like I should be able to edit a module to incorporate this change.
If you mean that you already have 1,500 rows in an existing HubDB table and want to display more than 1,000 rows on a web page, then you can add a limit in the function query, i.e.:
{% for row in hubdb_table_rows(xxxxxxxxx, 'limit=1500') %}
{# your code here #}
{% endfor %}