HUBDB only 4 child tables are rendering from parent table

I am Having an issue for the main HUBDB dynamic page rendering of the child tables. It renders fine for the first 4 child tables but looks like does not outpot rows from the 5th one and more. Can some one assis with this?

Hi, @AArieti :waving_hand: Thanks for your question. We’re you able to get this resolved?

If not, I have a few suggestions and requests so that the community can better assist you.

General troubleshooting:

— Check your template or custom module code for any hard-coded limits or pagination settings. There might be a limitation set unintentionally, affecting rows beyond the fourth table

— Examine the structure of your HubDB data and look for inconsistencies or data formatting which could impact the rendering

— Inspect your browser console for any JavaScript errors or warnings

If you’re still having trouble, please provide additional information, such as:

— the code you’re using to render the tables

— any relevant error messages or logs

This will help the community better understand your issue.

Best,

Jaycee

Hey @AArieti
The problem might be that hubdb_table_rows() has a limit of 10 calls per CMS page. If this limit is passed, then the data will not be shown on the page.
Please check if you have used this function for other tables, except from calling the parent table and the child tables.
I hope this answers your question.