Redirect users to onboarding until they complete it

Here is the script to be inserted in the homepage settings (the page with just “/” as a url) => custom code => header

<script>
    document.addEventListener('DOMContentLoaded', function() {
        if (window['logged_in_user'] && !window['logged_in_user']['Is in Softr']) {
            window.location.replace("/get-started");
        }
    });
</script>
3 Likes