Hello everyone, Thanks for reading and for your help
I have a Gravity form Quiz in the link and can’t find how to add a retake button in case they failed and direct users to page two, where they do not have to go through completing their info (Required on the page 1). If some of you know how to do this, could you please help me? THANKS!
Is it possible to use the {personality_quiz_result_percent[category]} in the conditional display on confirmations?
So, if the condition could be “Quiz Result Percent (category)” “greater than” “70”
]]>I am wondering if this plugin will produce multiple personality results. For example, there may be 6 personality types and after answering a series of questions, the results reported indicate that the individual fits 2 personality types.
]]>Hi,
I have created a test on a website, in chrome the results are displayed , but in safari it gives the merge tag code instead of the result.
What to do?
Hello does this still work on the current version of WordPress?
]]>Hi Daniel
Are there any plans to add localisation to the add-on?
I would be able to contribute Dutch translations.
Thanks
]]>I am trying to add up the values from my quiz in different categories. I would really be great if “valueA{1}” could get added together with all of the other “valueA” and the “valueB” could be added together so at the end if could say you scored 15 on valueA and 10 on valueB 5 on valueC. Does that make sense? Thanks in advance!
]]>Hi I have created a multiple choice quiz and while I can see conditional logic options at the base of my notifications I can’t at the base of the confirmations text.
Can you help? I am not sure whats up…
Hi
I have 9 questions, three types of personalities (A, B, C).
When you have the same number of answers for A, B and C (three for each) – how do you create fourth confirmation for ‘mixed personality’?
Or if you have, e.g. 4 answers A, 4 answers B and 1 answer C. How do you create a confirmation for ‘mixed personality’?
I tried using conditional logic:
“Use this confirmation if ALL of the following match:
Quiz result is A
Quiz result is B
Quiz result is C
”
But this doesn’t work.
Any ideas on how to make the ‘mixed personality’ confirmation working?
Thank you
Brian
Is there a way to, in the multiple choice quiz, target one question specifically and if they click Yes, break the quiz structure and choose an answer? Is it possible to give questions weight?
]]>I’m having an issue with displaying results. I’m using the multiple choice with numeric values attached. I asked this question in an earlier thread, but hadn’t received a reply yet.
Below are two examples labels and values for my multiple choice answers:
“Never = GroupA{1}, “Rarely” = GroupA{2}, “Sometimes” = GroupA{3}, “Often” = GroupA{4}, “Always” = GroupA{5}
and..
“Never = GroupB{1}, “Rarely” = GroupB{2}, “Sometimes” = GroupB{3}, “Often” = Group{4}, “Always” = GroupB{5}
I simply posted {personality_quiz_result} to show the results in my confirmation.
Instead of showing the result for which should have a greater value (in this case Group B), it seems that just the last value I selected is displayed as the result, with the number appended. For example, when Group D is the answer to my last question, the result on the confirmation page is “D{1}”. My answer should have been simply Group B.
It appears that the plugin is supposed to have functionality for tallying results for each category and then displaying the category with the greatest numeric value that was tallied. Please help to get this quiz up and running.
]]>Hi i have installed the plugin and activated the plugin but i am not able to see the option to add forms in left side panel.
]]>Hi,
Great plugin! Just having a bit of trouble with it displaying it on mobile.
The thumbnails are too small to see clearly on a mobile screen.
I tried increasing the width of each list item via the style sheet, but it didn’t change the width of the image itself.
Could you provide a solution for this, please?
Thanks!
]]>Hi!
I’m receiving the following error on form submission:
Warning: max(): Array must contain at least one element in /public_html/wp-content/plugins/gravity-forms-personality-quiz-add-on/class-gravity-forms-personality-quiz-addon.php on line 118
I have my form enabled for “Personality Quiz Add-On” and my multiple choice questions enabled for “Use for Personality Quiz Score”.
I’m using values such as A{1}, A{2}, etc for my multiple choice answers. I would like to be able to tally the personality quiz for groups A, B, etc but I’m not sure exactly how to do that. Can someone please help with this?
Below are screenshots showing my settings:
https://www.speicher-associates.com/wp-content/uploads/screenshots/screenshot-add-on-settings.JPG
https://www.speicher-associates.com/wp-content/uploads/screenshots/screenshot-form-questions.png
https://www.speicher-associates.com/wp-content/uploads/screenshots/screenshot-form-settings.png
I’m attempting to create a ‘personality quiz’ in which there are three possible outcomes “outcome a, outcome b, outcome c”
How do I set up the conditional logic so that in a series of ten questions if the user answers for example more “outcome a” responses than any other other two outcome answers they receive this type of personality..
]]>Hi, first off, EXCELLENT plugin! I was wondering if there was a way to get dropdown questions accepted by the plugin as part of the quiz? Is there a function I can add that would make this happen? I can somewhat tweak plugin code here and there, but I don’t want to muddy up your work (and then mess up my existing quiz). Any direction you can provide would be appreciated!
]]>Hi,
I’m having problem with image label.
I’ve added one image and it is duplicated:
Hey guys,
I created a quiz (numeric) and for some reasons the plugin doesn’t calculate the values to the correct score. For example: I have seven questions and answer them all on the value 1, but the result is 6 instead of 7.
Any idea what this may cause?
Thank you!
]]>I have a working Personality Quiz with another plugin, but I need a new one that will show either numeric or percentage results for all of four personality outcomes (i.e. 45% Red, 25% Blue, 20% Green, 10% Yellow). Is this possible with your plugin? Thanks in advance!
]]>I have successfully created a quiz. Nice job on the plugin!
How can I add the functionality to share the quiz results on facebook?
Thank you.
]]>Hi Collin & Dabernathy,
I work as a front end developer and am currently using your quiz add-on for a site I and my team are building. We needed to apply weights to more important questions for the quiz in order to make a “tiebreaker” rather than have the tie breaker be chosen randomly, so we added some code to your php class and set the important questions to loop through via ACF fields.
Here is the code:
/* BEGINNING OF CUSTOM */
// A+A addition: get tiebreaker field
$tiebreaker1 = get_field('tiebreaker1', 'option');
$tiebreaker2 = get_field('tiebreaker2', 'option');
$tiebreaker3 = get_field('tiebreaker3', 'option');
$tiebreaker4 = get_field('tiebreaker4', 'option');
// if tiebreaker1 exists, set final with Array ID, else set at ID 0
if ($tiebreaker1) {
$tiebreaker_next1 = $tiebreaker1;
$tiebreaker_final1 = $lead[$fields[$tiebreaker_next1]->id];
} else {
$tiebreaker_final1 = '';
}
// if tiebreaker2 exists, set final with Array ID, else set at ID 0
if ($tiebreaker2) {
$tiebreaker_next2 = $tiebreaker2;
$tiebreaker_final2 = $lead[$fields[$tiebreaker_next2]->id];
} else {
$tiebreaker_final2 = '';
}
// if tiebreaker3 exists, set final with Array ID, else set at ID 0
if ($tiebreaker3) {
$tiebreaker_next3 = $tiebreaker3;
$tiebreaker_final3 = $lead[$fields[$tiebreaker_next3]->id];
} else {
$tiebreaker_final3 = '';
}
// if tiebreaker4 exists, set final with Array ID, else set at ID 0
if ($tiebreaker4) {
$tiebreaker_next4 = $tiebreaker4;
$tiebreaker_final4 = $lead[$fields[$tiebreaker_next4]->id];
} else {
$tiebreaker_final4 = '';
}
// invoke only if more than 1 winner
if ( count($winners) > 1 ) {
// if the tiebreaker1 answer is a winner, print it
if (in_array($tiebreaker_final1, $winners)) {
return $tiebreaker_final1;
// if the tiebreaker2 answer is a winner, print it
} elseif (in_array($tiebreaker_final2, $winners)) {
return $tiebreaker_final2;
// if the tiebreaker3 answer is a winner, print it
} elseif (in_array($tiebreaker_final3, $winners)) {
return $tiebreaker_final3;
// if the tiebreaker4 answer is a winner, print it
} elseif (in_array($tiebreaker_final4, $winners)) {
return $tiebreaker_final4;
// otherwise do the regular thing
} else {
shuffle($winners);
return $winners[0];
}
// else resume normal operation
} else {
// return the winner, or if it was a tie, a random winner
shuffle($winners);
return $winners[0];
}
}
/* END OF CUSTOM */
Problem we are having is that ONLY the first tiebreaker is working and ONLY for the first quiz. We have two quizzes with the same weighted questions, however only the first tiebreaker for the first quiz seems to be working. Would you be able to give us some guidance on what we can do to fix the issue? Any help would be much appreciated.
Look forward to hearing from you.
Phillip
Is it possible to create a download link within the confirmation page for quiz results?
]]>Is it possible to send all ties to one redirect page?
]]>In the description it says “Ties will be broken randomly.” Will there ever be an option to make it so if there is a tie, it will show both tied results instead of randomly choosing one?
]]>I’ve just downloaded and installed the latest version of the Personality Quiz and activated it (I’ve used this plugin without issue several times before by the way). I’ve gone into Form Settings but do not have the option for numeric or multiple choice quizzes. I don’t what could be causing this to happen. Have you experienced this before and do you have any idea how to fix the issue? Thanks.
]]>I have a quiz that results in 5 different possible outcomes. Currently I have it set up to add those who take the quiz to my Mail Chimp list but I really need to add them to the specific group within the main list based on the outcome they receive. I cannot seem to do this and Gravity Forms support says I have to contact this plugin author to try to figure it out.
As it is now, I can notify them via the notification of their quiz result but this then does not leave them incentive to confirm their email address and get on the list.
Any help with this would be appreciated.
https://www.ads-software.com/plugins/gravity-forms-personality-quiz-add-on/
]]>Hello,
Can u advice for some tutos please ?
https://www.ads-software.com/plugins/gravity-forms-personality-quiz-add-on/
]]>I have Gravity Forms Version 2.0.3 installed and I have your Quiz Add-On Version 0.8 Installed and I don’t have any other GF add-ons installed.
When I create a new form and go to “Settings,” there is no new “personality quiz add-on” settings option like in your screenshot.
What can be wrong that it is not showing up? Please help. Thanks!
Aaron.
https://www.ads-software.com/plugins/gravity-forms-personality-quiz-add-on/
]]>I’m receiving 2 errors when I try to submit a form. Please see below.
Warning: max(): Array must contain at least one element in …/wp-content/plugins/gravity-forms-personality-quiz-add-on/class-gravity-forms-personality-quiz-addon.php on line 117
Warning: Division by zero in …/wp-content/plugins/gravity-forms-personality-quiz-add-on/class-gravity-forms-personality-quiz-addon.php on line 324
I’m using:
Gravity Forms 1.9.19
Gravity Forms Personality Quiz Add-On 0.8
WP 4.5.3
https://www.ads-software.com/plugins/gravity-forms-personality-quiz-add-on/
]]>Hello there! We’re excited to use your plugin. We are having some slight issues but have followed your advice on how to setup the quiz properly under the description: “Setting up your quiz” and “multiple choice values” to no avail.
We’re running:
We’re using the quiz to determine which animal you are, so far I have three questions that are laid out similar to this:
How are you in social situations:
Label: I like people Value: Dog
Label: I hide a lot Value: Cat
What do you do to relax:
Label: I go to movies Value: Dog
Label: I read a book Value: Cat
How do you prepare your meals
Label: I cook with spices Value: Dog
Label: I order out Value: Cat
What I would expect based on what I’ve read on this plugin and others support questions is that if I select dog for both, then the resulting tag in the confirmation page: {personality_quiz_result} should render out “Dog”
However, what’s happening is it just renders out “000” for every question answered (if there are three questions, I get three zeros). Is it possible that the plugin I have is corrupted – or do you think I’m missing a step?
Thank you for any help you can provide! ??
https://www.ads-software.com/plugins/gravity-forms-personality-quiz-add-on/
]]>