Hi, I am struggling to solve a refresh issue on my Repeater. I am displaying PrivateMembersData publicly so have had to create a Query in the backend with Suppress. It works perfectly. However, when I have a new sign up who registers their details, if I visit the Directory which has the repeater, the new information does not display. It is displaying the record in the repeater on my Editor but not on the live site. I have refreshed several times and both on PC and mobile the record does not show.
I don’t need it to automatically refresh, just as long as the directory page is reloaded, I would like the repeater to be re-populated.
If the user is not an Admin and you’re trying to expose info of others members, it won’t let you (for security&privacy reasons) unless you use suppressAuth (in the backend).
//backend. In the export function:
return query.find({suppressAuth: true})
If I understand you correctly, when you view it in preview, the data is showing the most recent member that has signed up when you load the page, but when you’re on the live site, it doesn’t show the most recent members?
Can you also share the code you’re using for your query in the backend file? That would help guide us with a good suggestion for you.