• Resolved AuroraFR

    (@aurorafr)


    Hi,
    I hope to create a quiz test with the plugin, is it possible ?
    My idea is to create a sorte of “perfonality test” with several choises, example :

    Question 1
    A
    B
    C

    Question 2
    A
    B
    C
    etc…

    Anwser :
    If you are more A your personnality is like that blablaba…

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @aurorafr,

    Yes of course, that’s possible.

    Best regards.

    Thread Starter AuroraFR

    (@aurorafr)

    Hi,
    Cooooooool !! How can I create that ? Can you help me, please ?

    Thank you !

    Plugin Author codepeople

    (@codepeople)

    Hello @aurorafr,

    You simply should insert radio buttons fields, where the labels are the questions and the choices the possible answers.

    and then, you should insert a “HTML Content” field with a DIV tag as its content where be displayed the answer, for example:

    <div class="answer-here"></div>

    and finally, in the equation associated to the calculated field you simply should generate the answer and display it in the previous tag. For example:

    
    (function(){
    /* check the personality here */
    var str = 'Your personality is A bla bla bla';
    jQuery('.answer-here').html(str);
    })()
    

    If you need additional help implementing your project I can offer you a custom coding service from my private website:

    https://cff.dwbooster.com/customization

    Best regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘How to create a Quiz test ?’ is closed to new replies.