How to Redirect Quiz to Another Page¶
In this guide, we'll explore several methods to redirect your customers to another page following the completion of a quiz. Below, you'll find detailed steps for implementing page redirection using various techniques within a quiz environment.
Using Jump Logic for Conditional Redirection¶
Jump Logic offers a dynamic way to direct customers to specific URLs based on their quiz interactions. Here’s how to implement it:
- Navigate to the Jump Logic Section: In the Quiz Builder, locate the Jump Logic settings.
- Configure URL Redirection: Specify the URL to which customers should be redirected to. This can be set to occur after a specific question or based on selected answers.
- Publish & Test Your Setup: Click the top-right
Publish/Save
button to update the preview/live quiz. Then,Preview
the quiz to ensure the redirection wors correctly.
Even if you redirect the customer with Jump Logic to another page the quiz responses will be saved in the Quiz Builder's Metrics
section.
Info
Redirecting with Jump Logic does not transfer quiz data to this new redirection page. If you want to send quiz data to another URL use the callback function.
Redirecting to a Custom Results Page via Callback Function¶
You can use our callback function to redirect the customers to another (custom-built) Results Page. This allows for greater flexibility in handling quiz data and customizing the quiz resutls look.
Warning
To do this, you'll need basic knowledge of JavaScript and handling JSON data.
- Set Up the Callback Function: Implement the callback function on your website to capture quiz results in JSON format.
- Store and Redirect: Configure the function to store the results locally (e.g., in the browser's local storage or cookies) before redirecting the user to your custom Results Page.
- Access the Results Page First: The callback function is designed to trigger upon reaching the quiz's results page. Make sure that the results page is loaded even for a fraction of a second for the data to trasfer correctly. This sequence ensures that the callback captures the quiz response, saving it as JSON in your website's local storage/cookies, before any redirection occurs.
- Use the Data: On your custom page, use the
console.log(quizResponse)
function to retrieve and use the quiz data as needed.
For a more detailed guide on setting up the callback function, refer to this resource.
Add a Redirection Button to the Results Page¶
Offering a direct link to another page from your Results Page can be achieved simply with an HTML button.
- Add an HTML Block: In the Results Page editor, click the
+
button to insert anHTML block
. -
Insert the Button Code: Use the following HTML snippet to add a button:
```html <a class="button" href="https://revenuehunt.com/">Visit RevenueHunt.com</a> ```
Edit the link URL and text to your liking.
- Customize Appearance: Style the button with CSS. You can add custom styles in the Quiz Design tab, targeting the button with
.lq-results a.button
.
Version 2 of the Shop Quiz: Product Recommender app is not yet available. It is currently in the beta testing phase. Learn more here.
Offering a direct link to another page from your Results Page can be achieved simply with an Button.
- Add a Button: In the Results Page editor, click the
+ Add block
button to insert aButton
block. -
Insert the Button URL: Use the Button URL filed to add a custom link URL you want the user to be redirected to:
Offering a direct link to another page from your Results Page can be achieved simply with an HTML button.
- Add an HTML Block: In the Results Page editor, click the
+
button to insert anHTML block
. -
Insert the Button Code: Use the following HTML snippet to add a button:
```html <a class="button" href="https://revenuehunt.com/">Visit RevenueHunt.com</a> ```
Edit the link URL and text to your liking.
- Customize Appearance: Style the button with CSS. You can add custom styles in the Quiz Design tab, targeting the button with
.lq-results a.button
.
Offering a direct link to another page from your Results Page can be achieved simply with an HTML button.
- Add an HTML Block: In the Results Page editor, click the
+
button to insert anHTML block
. -
Insert the Button Code: Use the following HTML snippet to add a button:
```html <a class="button" href="https://revenuehunt.com/">Visit RevenueHunt.com</a> ```
Edit the link URL and text to your liking.
- Customize Appearance: Style the button with CSS. You can add custom styles in the Quiz Design tab, targeting the button with
.lq-results a.button
.
Offering a direct link to another page from your Results Page can be achieved simply with an HTML button.
- Add an HTML Block: In the Results Page editor, click the
+
button to insert anHTML block
. -
Insert the Button Code: Use the following HTML snippet to add a button:
```html <a class="button" href="https://revenuehunt.com/">Visit RevenueHunt.com</a> ```
Edit the link URL and text to your liking.
- Customize Appearance: Style the button with CSS. You can add custom styles in the Quiz Design tab, targeting the button with
.lq-results a.button
.
Offering a direct link to another page from your Results Page can be achieved simply with an HTML button.
- Add an HTML Block: In the Results Page editor, click the
+
button to insert anHTML block
. -
Insert the Button Code: Use the following HTML snippet to add a button:
```html <a class="button" href="https://revenuehunt.com/">Visit RevenueHunt.com</a> ```
Edit the link URL and text to your liking.
- Customize Appearance: Style the button with CSS. You can add custom styles in the Quiz Design tab, targeting the button with
.lq-results a.button
.
Info
Redirecting with a Button/ HTML link does not transfer quiz data to this new redirection page. If you want to send quiz data to another URL use the callback function.
By following these steps, you can effectively guide customers to relevant pages mid or post-quiz.