There are two actions that are run after a signup and right before the current redirect back to the sheet page..
dlssus_form_post_process
and dlssus_form_post_process_{TASK_ID}
You should be able to tap into one of these to handle your redirect by adding something along the lines of the code below in your theme’s functions.php file…
function my_custom_sus_redirect($task, $signup_id)
{
if (empty($signup_id)) {
return; // skip redirect if no new signup was created
}
wp_redirect($some_url); // TODO: replace $some_url with the thank you page
exit;
}
add_action('dlssus_form_post_process', 'my_custom_sus_redirect', 10, 2);
If you run into any trouble, please let me know.