Custom form action
-
Hello,
On client’s website Im trying to implement custom action to one of wp forms on homepage above the footer with ID 18741.The code seems to be correct however after form submit, redirection do not happen.
Could you pls help?
I used snippet below in functions.php./* * Return a specific URL on the form submission. * * @link https://wpforms.com/developers/how-to-customize-the-form-action/ */ function wpf_custom_form_action( $action, $form_data ) { if ( $form_data[ 'id' ] == '18741' ) { return 'https://seasonsnow.ecomailapp.cz/public/subscribe/1/(censored)'; } return $action; } add_filter( 'wpforms_frontend_form_action', 'wpf_custom_form_action', 10, 2 );
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom form action’ is closed to new replies.