The Community forums are being phased out in favor of a new Slack group.
Add your email address below to get an invitation to join the community slack group

Slack Signup
Newsletter Optin
Help Desk

Close window on submit

Labels

This Discussion is public

Notifications

Hi everyone,

Here is the code to place in your function.php file in your theme if you want to close a popup with a form inside after cliking the submit button :

add_action('frm_submit_button_action', 'your_function_name');
function your_function_name($form){
if($form->id == 22){ //change 5 to the ID of the form you would like this inserted in
echo ' onclick="window.parent.location.reload();window.close()"';
}
}

Cheers.

Thanks for sharing!

Discussion closed.