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
Close window on submit
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.
November 2, 2015 at 10:43 am
Thanks for sharing!
Discussion closed.