[Wishlist] Adding a reload function so Memberstack automatically updates member data for Zapier's login-redirect Not planned
It takes Zapier a bit of time before it fills in the login-redirect. But when the member is taken to the page after signup Memberstack hasnt been updated because zapier updates later. We also don’t automatically update the member data if its changed so we have to rely on a page refresh or a redirect to get the new member data. - Louis
A Memberstack reload function would help with this in the future, but this is a big project according to our devs
Workaround: There’s a could be ways around this. You could have an in-between page that waits a little before redirecting the user to the app or the dashboard where the button would work. Sending a member to /creating and having a loader on the page that lets the member know the new app page is being built and then after a couple seconds redirect them to the app of the dashboard would work.
Comments
5 comments
Hi
I am facing same issue. Have you got any solutions
Also adding some code written by Chukwudi in case someone else wants to try this code:
refresh the page dynamically is to add the code snippet below before the </body> tag on the dashboard page
<script>
window.onload = function() {
const previousUrl = document.referrer;
if (previousUrl.includes('sign-up') || previousUrl.includes('log-in')) {
location.reload();
}
}
</script>
I've found the Make.com is, on average, much faster at making updates.
Either way, I recommend redirecting new members to a welcome page or shared members-area with a dynamic link to their specific page.
Hi Duncan,
After sign up redirect to specific page there I have added almost 30 seconds timeout then redirect to membership page but it's not working. It's redirect to sign up page.
Can you please suggest
Do you have a testing link I could use? And would you be willing to share screenshots of the Make/zapier scenario?
Please sign in to leave a comment.