Hi @ronanobrien1
I hope you’re well today!
This can be achieved (if it’s a “personality” type quiz) with a bit of additional custom code.
You’ll find the code here:
https://gist.github.com/wpmudev-sls/84648e04ccab661bb7c0c3c7ff8368d6
To add it to the site:
– create an empty file with a .php extension (e.g. “forminator-quiz-redirect.php”)
– copy and past code into it
– configure code (* see below)
– save it and upload to the “/wp-content/mu-plugins” folder of your site’s WordPress installation.
* to configure code you will need to edit these lines first:
$redirect_urls = array(
'First one' => 'https://example.com/case-1',
'Second one' => 'https://example.com/case-2',
'Third one' => 'https://example.com/case-3',
'Fourth one' => 'https://example.com/case-4',
);
The example URLs would be the URL to redirect to for each personality. The “First one”, “Second one” and so on are the “personalities”. These strings should be exactly the same (case sensitive) as personalities’ titles in quiz configuration.
Then in these two lines
$open_new_tab = false;
$delay_time = 2000;//delay 2s
you decide whether to redirect in the same browser tab or a new tab and after what time (by default it redirects after 2 seconds).
Best regards,
Adam