Submit Form redirect to URL based on dropdown selection 123 PostsEclipseMedia 8 years ago5TopicAfter someone submits a form, I would like them to be redirected to a URL based on a dropdown select in the formExampleSimple Select (field)Options arePay By ChequePay Online by Credit CardWhen form is submittedIf Pay By Cheque was selected, the user would be redirected to a URL I specified and same goes for if they select Pay Online by Credit Card.Thanks 123 PostsEclipseMedia 8 years ago4Level 1Anyone? 1283 PostsBucklash 8 years ago3Level 2Hi EclipseI would add a conditional for a field, and probably use the custom plugin/fieldSee my answer on another post. Or maybe get the field plugin to show the submit button relevant to the option chosen and have each submit set to the relevant urlBucklash 154 PostsWebOne 8 years ago2Level 3You can do this with the Code Pack plugin - Afterstore (haven't tried field 42).Check the value and set the config['url'] variable.eg:if ($fields['yourdropdown']->value == 'creditcard') {$config['url'] = 'http://www.yoursite.com/creditcard' } 1283 PostsBucklash 8 years ago1Level 4Smooth! 123 PostsEclipseMedia 8 years ago0Level 5Agree! Smooth! and it works perfect! Thank you. I had this plugin but never put 2 to 2 together :)