CMS Development

Philip_Marsh
投稿者

Displaying recent entries from chlid HubDB

解決

Hi,

I have a parent database, that has 3/4 child DB's sitting underneath it. What I need is the page to pull in the 5 most recent entries and display them in a list. 

 

I'm using the following code, but it doesn't appear to be working.

 

The code is meant to create an array, pulling in all entries across the child DBs, sort by date created, and then loop through 5 times and spit out the 5 latest entries. 

 

What am I missing?

 

			{% set childCombineArr = [] %}
			{% for row in hubdb_table_rows(dynamic_page_hubdb_table_id, queryparam) %}
			{% if row.hs_child_table_id %}
				{% set child_table = hubdb_table_rows(row.hs_child_table_id) %}
				{% for row in child_table %}
					{% set timeAdded = row.createdAt %}
					{% do childCombineArr.append({'timeAdded': timeAdded, 'row': row}) %}
				{% endfor %}
			{% endif %}
		{% endfor %}
		{% for item in childCombineArr|sort(True, False, 'timeAdded') %}
			{% if loop.index <= 5 %}
				{% set row = item.row %}
				{{row.name}}
			{% endif %}
		{% endfor %}

 

0 いいね!
1件の承認済みベストアンサー
piersg
解決策
キーアドバイザー

Displaying recent entries from chlid HubDB

解決

@dennisedson I'm pretty sure this is based off my code which I've provided on the forum before haha.

 

@Philip_Marsh You want row.hs_created_at not row.createdAt so 

{% set timeAdded = row.hs_created_at %}

元の投稿で解決策を見る

4件の返信
dennisedson
HubSpot製品開発チーム
HubSpot製品開発チーム

Displaying recent entries from chlid HubDB

解決

@piersg , @alyssamwilie -- see anything funky here?

0 いいね!
piersg
解決策
キーアドバイザー

Displaying recent entries from chlid HubDB

解決

@dennisedson I'm pretty sure this is based off my code which I've provided on the forum before haha.

 

@Philip_Marsh You want row.hs_created_at not row.createdAt so 

{% set timeAdded = row.hs_created_at %}
Philip_Marsh
投稿者

Displaying recent entries from chlid HubDB

解決

I just checked and yes it is your code. Thank you for supplying it originally. 

 

Thank you! That's fixed the issue. Now I just need to style it accordingly.

dennisedson
HubSpot製品開発チーム
HubSpot製品開発チーム

Displaying recent entries from chlid HubDB

解決

@piersg  we need a code collection area for the Community 👀