CMS Development

Viktar
Membre

Can not save template

Résolue

Hello!

I have an issue to save template.

 

 

 

{% set queryParameters ='region=' + html_lang %}
{% set all_vacancies = hubdb_table_rows(5688447, queryParameters) %}

 

 

 

 

11HdvTu

 

HL4txbQ

 

But in this case saving works well:

 

 

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=lt') %}

 

 

 

What is wrong?

 

UPD:

Снимок экрана от 2023-03-03 13-40-52.png

But it should return 0 rows instead the error. 

It looks like a hubspot bug

0 Votes
1 Solution acceptée
Stephanie-OG
Solution
Conseiller clé

Can not save template

Résolue

Does this work?

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=en') %}

 

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

 


Stephanie O'Gay Garcia

Freelance HubSpot CMS Developer

Website | Contact

Voir la solution dans l'envoi d'origine

2 Réponses
Stephanie-OG
Solution
Conseiller clé

Can not save template

Résolue

Does this work?

 

{% set all_vacancies = hubdb_table_rows(5688447, 'region=en') %}

 

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

 


Stephanie O'Gay Garcia

Freelance HubSpot CMS Developer

Website | Contact

Viktar
Membre

Can not save template

Résolue

Becuase it looks like the erorr is that there's no region "en" in your HubDB table (in which case you can just add the option to the column).

- it is a solution, but it is wrong. Template should not know about data structure. Database should return 0 rows instead of the error message

0 Votes