• Resolved ronanobrien1

    (@ronanobrien1)


    Hi all,

    I am looking to have a conditional redirect once someone completes a quiz. The quiz is personality based and I need to redirect people to a page once they finish the quiz. Each personality would redirect to a different URL.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    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

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @ronanobrien1 ,

    We haven’t heard from you for some time now, so it looks like you don’t need our assistance anymore.

    Feel free to re-open this ticket if needed.

    Kind regards
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conditional redirect post quiz’ is closed to new replies.