We are making a questionnaire with just YES or NO answers and when you click submit it notices if you have clicked no and it will take you to a certain page depending on the question.
How do i do this?
We are making a questionnaire with just YES or NO answers and when you click submit it notices if you have clicked no and it will take you to a certain page depending on the question.
How do i do this?
a PHP page. Post values to that
like redir.php?question={field from gravityforms merge tag her} .. yes / no
fil
<?php
if $_GET=="yes"{
header: http://url ;
}
else {
header-loc ? (i forget): http://blsdasd.com
}
?>
lol i butchered that
$_GET['question']=="yes"
You can also use the gform_confirmation filter and check for your yes or no answers, and change the URL of the page you direct them to. http://www.gravityhelp.com/documentation/page/Gform_confirmation
Cheers guys you are life savers