CF7: Redirect to another URL if submission error












0














I have created a form using the Contact Form 7 plugin for WordPress.



My form looks like this:



<label> User Name*
[text* your-name] </label>

<label> Email Adress*
[email* your-email] </label>

[submit "Register"]


I can detect if someone trying to use the same email address (already registered) via this tutorial, https://cfdbplugin.com/?page_id=904



But, WHILE showing the error message, how can I let the page redirect him to another URL after some amount of time? For example to "/homesite/?para="



Maybe I need to do something with this code



if (is_already_submitted($formName, $fieldName, $_POST[$name])) {
$result->invalidate($tag, $errorMessage);
}
}
return $result;


But I don't know how should I amend those code. Please help me.










share|improve this question






















  • To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
    – yirvan
    Nov 11 at 20:12
















0














I have created a form using the Contact Form 7 plugin for WordPress.



My form looks like this:



<label> User Name*
[text* your-name] </label>

<label> Email Adress*
[email* your-email] </label>

[submit "Register"]


I can detect if someone trying to use the same email address (already registered) via this tutorial, https://cfdbplugin.com/?page_id=904



But, WHILE showing the error message, how can I let the page redirect him to another URL after some amount of time? For example to "/homesite/?para="



Maybe I need to do something with this code



if (is_already_submitted($formName, $fieldName, $_POST[$name])) {
$result->invalidate($tag, $errorMessage);
}
}
return $result;


But I don't know how should I amend those code. Please help me.










share|improve this question






















  • To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
    – yirvan
    Nov 11 at 20:12














0












0








0







I have created a form using the Contact Form 7 plugin for WordPress.



My form looks like this:



<label> User Name*
[text* your-name] </label>

<label> Email Adress*
[email* your-email] </label>

[submit "Register"]


I can detect if someone trying to use the same email address (already registered) via this tutorial, https://cfdbplugin.com/?page_id=904



But, WHILE showing the error message, how can I let the page redirect him to another URL after some amount of time? For example to "/homesite/?para="



Maybe I need to do something with this code



if (is_already_submitted($formName, $fieldName, $_POST[$name])) {
$result->invalidate($tag, $errorMessage);
}
}
return $result;


But I don't know how should I amend those code. Please help me.










share|improve this question













I have created a form using the Contact Form 7 plugin for WordPress.



My form looks like this:



<label> User Name*
[text* your-name] </label>

<label> Email Adress*
[email* your-email] </label>

[submit "Register"]


I can detect if someone trying to use the same email address (already registered) via this tutorial, https://cfdbplugin.com/?page_id=904



But, WHILE showing the error message, how can I let the page redirect him to another URL after some amount of time? For example to "/homesite/?para="



Maybe I need to do something with this code



if (is_already_submitted($formName, $fieldName, $_POST[$name])) {
$result->invalidate($tag, $errorMessage);
}
}
return $result;


But I don't know how should I amend those code. Please help me.







wordpress contact-form-7






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 20:08









yirvan

1




1












  • To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
    – yirvan
    Nov 11 at 20:12


















  • To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
    – yirvan
    Nov 11 at 20:12
















To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
– yirvan
Nov 11 at 20:12




To make it clear, I want to redirect them to a "welcome back" page, so that their data will not store again into my MySQL.
– yirvan
Nov 11 at 20:12












1 Answer
1






active

oldest

votes


















0














You can do this using DOM Events. CF7 has custom DOM events, which can be used to redirect users to other page. Since you want to redirect when form data is invalid, you will need to use wpcf7invalid event.




wpcf7invalid — Fires when an Ajax form submission has completed successfully, but mail hasn’t been sent because there are fields with invalid input.




A quick example:



function my_awesome_cf7_custom_events () { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7invalid', function( event ) {
if ( 'FORM_ID' == event.detail.contactFormId ) {//<===replace FORM_ID with form id
location.replace('https://your-new-url/');
}
}, false );
</script>
<?php }
add_action( 'wp_footer', 'my_awesome_cf7_custom_events' );


Replace FORM_ID with your form id, and set your url.



More about CF7 DOM events






share|improve this answer





















  • Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
    – yirvan
    Nov 12 at 0:49











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53252745%2fcf7-redirect-to-another-url-if-submission-error%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You can do this using DOM Events. CF7 has custom DOM events, which can be used to redirect users to other page. Since you want to redirect when form data is invalid, you will need to use wpcf7invalid event.




wpcf7invalid — Fires when an Ajax form submission has completed successfully, but mail hasn’t been sent because there are fields with invalid input.




A quick example:



function my_awesome_cf7_custom_events () { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7invalid', function( event ) {
if ( 'FORM_ID' == event.detail.contactFormId ) {//<===replace FORM_ID with form id
location.replace('https://your-new-url/');
}
}, false );
</script>
<?php }
add_action( 'wp_footer', 'my_awesome_cf7_custom_events' );


Replace FORM_ID with your form id, and set your url.



More about CF7 DOM events






share|improve this answer





















  • Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
    – yirvan
    Nov 12 at 0:49
















0














You can do this using DOM Events. CF7 has custom DOM events, which can be used to redirect users to other page. Since you want to redirect when form data is invalid, you will need to use wpcf7invalid event.




wpcf7invalid — Fires when an Ajax form submission has completed successfully, but mail hasn’t been sent because there are fields with invalid input.




A quick example:



function my_awesome_cf7_custom_events () { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7invalid', function( event ) {
if ( 'FORM_ID' == event.detail.contactFormId ) {//<===replace FORM_ID with form id
location.replace('https://your-new-url/');
}
}, false );
</script>
<?php }
add_action( 'wp_footer', 'my_awesome_cf7_custom_events' );


Replace FORM_ID with your form id, and set your url.



More about CF7 DOM events






share|improve this answer





















  • Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
    – yirvan
    Nov 12 at 0:49














0












0








0






You can do this using DOM Events. CF7 has custom DOM events, which can be used to redirect users to other page. Since you want to redirect when form data is invalid, you will need to use wpcf7invalid event.




wpcf7invalid — Fires when an Ajax form submission has completed successfully, but mail hasn’t been sent because there are fields with invalid input.




A quick example:



function my_awesome_cf7_custom_events () { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7invalid', function( event ) {
if ( 'FORM_ID' == event.detail.contactFormId ) {//<===replace FORM_ID with form id
location.replace('https://your-new-url/');
}
}, false );
</script>
<?php }
add_action( 'wp_footer', 'my_awesome_cf7_custom_events' );


Replace FORM_ID with your form id, and set your url.



More about CF7 DOM events






share|improve this answer












You can do this using DOM Events. CF7 has custom DOM events, which can be used to redirect users to other page. Since you want to redirect when form data is invalid, you will need to use wpcf7invalid event.




wpcf7invalid — Fires when an Ajax form submission has completed successfully, but mail hasn’t been sent because there are fields with invalid input.




A quick example:



function my_awesome_cf7_custom_events () { ?>
<script type="text/javascript">
document.addEventListener( 'wpcf7invalid', function( event ) {
if ( 'FORM_ID' == event.detail.contactFormId ) {//<===replace FORM_ID with form id
location.replace('https://your-new-url/');
}
}, false );
</script>
<?php }
add_action( 'wp_footer', 'my_awesome_cf7_custom_events' );


Replace FORM_ID with your form id, and set your url.



More about CF7 DOM events







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 11 at 23:29









тнє Sufi

293419




293419












  • Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
    – yirvan
    Nov 12 at 0:49


















  • Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
    – yirvan
    Nov 12 at 0:49
















Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
– yirvan
Nov 12 at 0:49




Thanks for your help, but I need to carry query parameter = your-name to the next URL and user must filled in the field first. Is it possible?
– yirvan
Nov 12 at 0:49


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53252745%2fcf7-redirect-to-another-url-if-submission-error%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Full-time equivalent

Bicuculline

さくらももこ