<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: HubDB Rows not Pulling into Module in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1176811#M43556</link>
    <description>&lt;P&gt;You solved it for me!&amp;nbsp; There was a quote field in the module that was hidden behind a toggle and a separate, similarly named, quote field in the HubDB editor. I was mistakenly editing one and not the other. Thank you so much for your help!&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jul 2025 17:07:45 GMT</pubDate>
    <dc:creator>ATaylor40</dc:creator>
    <dc:date>2025-07-15T17:07:45Z</dc:date>
    <item>
      <title>HubDB Rows not Pulling into Module</title>
      <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174187#M43493</link>
      <description>&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have a HubDB table that was created four years ago (well before my time) to house our testimonials, which are then pulled into a custom three-testimonial module on the website. I updated the table yesterday with 9 new testimonials I want to swap out on the site, but none of them are pulling into the modules.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the relevant code on the module.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{# Get Testimonials from HubDB #}&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% set query_which_quote = module.quote %}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% set table_testimonials = hubdb_table_rows(3411978, "&amp;amp;which_quote="~query_which_quote )%}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% if table_testimonials == [] %}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% else %}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% for row in table_testimonials %}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="item"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;span class="quote-icon"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;img src="{{row.profile_image.url}}" alt="Prialto Testimonial by {{row.author}} of {{row.company}}" width="150px" height="150px" loading="lazy" class="quote-icon" /&amp;gt;&amp;nbsp; &amp;lt;/span&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;div class="author"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;div class="text-wrap"&amp;gt;{{row.author}}&amp;lt;span class="title"&amp;gt;{{row.company}}&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="quote"&amp;gt;{{row.quote}}&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="stars"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;img src="https://www.prialto.com/hubfs/five-stars-01.svg" alt="5 stars"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;/div&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% endfor %}&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {% endif %}&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div class="col-12 col-lg-4"&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class="box"&amp;gt;&lt;/PRE&gt;&lt;DIV&gt;Is there something I need to update in this code (beyond publishing the table update, which I've already done), or is there a cache that needs to be cleared?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Any recommendations for next steps would be appreciated!&lt;/DIV&gt;</description>
      <pubDate>Tue, 08 Jul 2025 18:19:37 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174187#M43493</guid>
      <dc:creator>ATaylor40</dc:creator>
      <dc:date>2025-07-08T18:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: HubDB Rows not Pulling into Module</title>
      <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174196#M43494</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/778348"&gt;@ATaylor40&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this where your testimonial module is?&amp;nbsp;&lt;A href="https://www.prialto.com/why-prialto" target="_blank"&gt;https://www.prialto.com/why-prialto&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I would guess it's not a caching issue as an uncached version of your page is the same:&amp;nbsp;&lt;A href="https://www.prialto.com/why-prialto?hsCacheBuster=5875" target="_blank"&gt;https://www.prialto.com/why-prialto?hsCacheBuster=5875&lt;/A&gt;&lt;BR /&gt;(Cheeky plug for my &lt;A href="https://www.seoanseo.ca/articles/hscachebuster" target="_blank" rel="noopener"&gt;Hubspot Cache Buster&lt;/A&gt;)&lt;BR /&gt;&lt;BR /&gt;Looking at your code, I think the first thing I'd check is this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% set query_which_quote = module.quote %}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;That would seem to be a field called "Quote" in your module (although the label could possibly de differnt to the name)&lt;BR /&gt;That field is being used here:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% set table_testimonials = hubdb_table_rows(3411978, "&amp;amp;which_quote="~query_which_quote )%}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;That filters the quotes shown such that what is in "Which Quote" column must match the "Quote" input in the module.&lt;BR /&gt;&lt;BR /&gt;I am sort of spitballing without being able to see the module and the table, but that's the first thing I'd look at. Do the quotes that show on the site have the "Which Quote" column filled in? Do the new ones? Do they match (exactly!)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/#contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 18:42:54 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174196#M43494</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-07-08T18:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: HubDB Rows not Pulling into Module</title>
      <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174808#M43512</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/778348"&gt;@ATaylor40&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The issue seems to be with this line:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set table_testimonials = hubdb_table_rows(3411978, "&amp;amp;which_quote="~query_which_quote ) %}&lt;/LI-CODE&gt;
&lt;P&gt;It's filtering rows based on the &lt;EM&gt;&lt;STRONG&gt;which_quote&lt;/STRONG&gt;&lt;/EM&gt; column. Make sure your new testimonials have a value in that column that matches the &lt;EM&gt;&lt;STRONG&gt;module.quote.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;To test, remove the filter and just use:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{% set table_testimonials = hubdb_table_rows(3411978) %}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If the new testimonials appear, the filter is the issue. No cache clearing needed, HubSpot updates published HubDB data automatically.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this will help you out. Please mark it as &lt;/SPAN&gt;&lt;STRONG&gt;Solution Accepted and upvote&lt;/STRONG&gt;&lt;SPAN&gt; to help another Community member.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 07:10:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1174808#M43512</guid>
      <dc:creator>GRajput</dc:creator>
      <dc:date>2025-07-10T07:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: HubDB Rows not Pulling into Module</title>
      <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1176811#M43556</link>
      <description>&lt;P&gt;You solved it for me!&amp;nbsp; There was a quote field in the module that was hidden behind a toggle and a separate, similarly named, quote field in the HubDB editor. I was mistakenly editing one and not the other. Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 17:07:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1176811#M43556</guid>
      <dc:creator>ATaylor40</dc:creator>
      <dc:date>2025-07-15T17:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: HubDB Rows not Pulling into Module</title>
      <link>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1176821#M43557</link>
      <description>&lt;P&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/778348"&gt;@ATaylor40&lt;/a&gt;&amp;nbsp;no worries, glad I could help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="profile2022a" style="width: 100px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/71500iE96AB1F9E9E277B9/image-size/small?v=v2&amp;amp;px=200" role="button" title="profile2022a" alt="profile2022a" /&gt;&lt;/span&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;Barry Grennan&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Freelance HubSpot CMS Developer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.seoanseo.ca?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Website&lt;/A&gt; | &lt;A href="https://www.seoanseo.ca/#contact?utm_source=HubSpotCommunity" target="_blank" rel="nofollow noopener noreferrer"&gt;Contact&lt;/A&gt; | &lt;A href="https://www.linkedin.com/in/barrygrennan" target="_blank" rel="nofollow noopener noreferrer"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 17:18:48 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/HubDB-Rows-not-Pulling-into-Module/m-p/1176821#M43557</guid>
      <dc:creator>BarryGrennan</dc:creator>
      <dc:date>2025-07-15T17:18:48Z</dc:date>
    </item>
  </channel>
</rss>

