CMS Development

hd-hs
Participante

Placeholders for HubDB content on landing page

resolver

I am using HubDB to pull data onto a landing page. The trouble I am having is that people editing the page cannot see the content in the editor view of the landing page (as the data is dynamic).

Is there any way to pull in some dummy content so that the people editing the page can at least see where the text will sit (the content is all text at the moment).

0 Avaliação positiva
1 Solução aceita
hd-hs
Solução
Participante

Placeholders for HubDB content on landing page

resolver

Fixed this by adding a check to see if the database column had content in it. Then added an else condition which displays placeholder text.

In the landing pages editor the database content is not pulled through (so the check will never return > 1) and it therefore falls through to the 'else' condition.

 

{% if dynamic_page_hubdb_row.hs_parent_row.hs_name | length > 1 %} {{ dynamic_page_hubdb_row.hs_parent_row.hs_name }} {% else %} PLACEHOLDER TEXT HERE {% endif %}

 

Exibir solução no post original

2 Respostas 2
ramanverma2005
Participante

Placeholders for HubDB content on landing page

resolver

can you please explain to me how you are doing that one ?

0 Avaliação positiva
hd-hs
Solução
Participante

Placeholders for HubDB content on landing page

resolver

Fixed this by adding a check to see if the database column had content in it. Then added an else condition which displays placeholder text.

In the landing pages editor the database content is not pulled through (so the check will never return > 1) and it therefore falls through to the 'else' condition.

 

{% if dynamic_page_hubdb_row.hs_parent_row.hs_name | length > 1 %} {{ dynamic_page_hubdb_row.hs_parent_row.hs_name }} {% else %} PLACEHOLDER TEXT HERE {% endif %}