another way is to put a thank you message directly in the same page
i put a button on my home page called ‘post your video”
<form method='post' action='http:yoursite/a-video-page/' class='postvideo' onclick="javascript:void window.open('http:yoursite/a-video-page/','1402582569248','width=500,height=500,toolbar=0,menubar=0,location=0,status=1,scrollbars=1,resizable=1,left=0,top=0');return false;">
<button class='videopost'><blink>your Video</blink></button>
</form>
this display on click a pop up with ma page “your video” inside of it.
I created the page in the back office and putted the shortcode: [wpuf_addpost]
and when user click on send button thanks to the following code, they see a ‘”thank youmessage in the same popup screen’
add_filter(‘wpuf_after_post_redirect’, ‘some_callback’);
function some_callback(){
echo '<div class="success">' . __('thanks!!', 'wpuf') . '</div>';
}