ContributionsMost RecentMost LikesSolutionsRe: Problems with custom components in Aurora I believe the process you're following is correct - once you're created the pull request, it's approved and merged into Stage-Main, it should appear for you within the site if stage-main is the active branch. Re: Handling the upcoming LIMIT and OFFSET changes Please let me know if you get a better response, otherwise the only solution we can think of to get page X is to cursor through to page X. So if you wanted page 100, you'd have to cursor through 100 pages before displaying the result! Which seems strange... Re: Handling the upcoming LIMIT and OFFSET changes Yes that's my thought exactly - pagination like that will be impossible over a certain number (depending on page size) Re: Handling the upcoming LIMIT and OFFSET changes It was emailed from Khoros Support notifications on Wednesday 9th August. Here's the content of the email: What’s changing? This update pertains to changes coming in release 23.12 that will affect how customers use the LIMIT and OFFSET values with API v2. 1. LIMIT: Starting with Community release 23.12, we will enforce a maximum value of 1K to the LIMIT. The default will continue to be 25. Exceeding the maximum 1K LIMIT will result in an error. 2. OFFSET: Starting with Community release 23.12, we will enforce a maximum value of 1K to the OFFSET. All queries with OFFSET values greater than 1K will fail with an error that the specified OFFSET exceeds the maximum allowed OFFSET. About LIMIT, OFFSET, & CURSOR Community API v2 supports the OFFSET and CURSOR mechanisms to page through data in a result set from a LiQL query. The CURSOR method scales more efficiently and works best for large result sets. The OFFSET method is more straightforward and works well for small data sets and for testing LiQL queries. Queries to the messages, users, boards, and categories collections often return larger result sets, and the CURSOR method will be required to obtain deeper data sets starting in 23.12. LIMIT: the number of records to include as you page through the result set. Example: SELECT author.id FROM messages WHERE board.name = 'wireless' LIMIT 10 OFFSET: the number of records to skip before returning results. Example: SELECT author.id FROM messages WHERE board.name = 'wireless' LIMIT 10 OFFSET 10 CURSOR: the number of records to skip before returning results, using a string-based mechanism. Example: SELECT author.id FROM messages WHERE board.name = 'wireless' LIMIT 10 CURSOR ‘MjuM3wYjBB…’ What's driving these changes? In order to maintain the integrity and scalability of community resources, these new thresholds are being implemented to reinforce best practices for obtaining deeper result sets using the more efficient CURSOR method. What changes need to be made? If you use LIMIT or OFFSET with a value higher than 1,000, you will need to lower that value to meet the aforementioned thresholds. When are these changes being made? The changes are slated for release 23.12, which is tentatively scheduled to be made available in January 2024. You can find more details regarding LiQL pagination here. Should you have any questions, please do not hesitate to contact Khoros Support.Thank you for being a Khoros customer! - The Khoros Team Handling the upcoming LIMIT and OFFSET changes You might be aware of the upcoming changes to LIMIT and OFFSET having a maximum value of 1000 in 23.12. Obviously this is likely to cause a problem to any custom components that loop through data such as messages. Cursor will work fine in some scenarios, but any kind of custom pagination will need UI/UX work to access records greater than 2000! Using cursor we'd only be able to move forward and not skip to page 1000 for example. Any other thoughts on how this could be achieved with CURSOR?! Re: Pop-Up Message There's several ways you can do this, but do you have an example of the type of popup you're looking to recreate? Do you have an example on another site so I can see what the UX is you're expecting?