Hi,
So I have a form created with the UserForm Module that opens in a light box. That part is working fine. After a user fills out the form and hits submit, they get redirected to a different page. I know this is triggered by:
return $this->redirect($this->Link() . 'finished' . $referrer); (Ln 938 of UserDefinedForm.php)
On that "finished" page they see the correct completion message. What I really want to happen is for that completion message to appear inside of the lightbox. Ideally the form would disappear and they would see the completion message.
Any suggestions on how to go about this would be great.
Thank you!
June