• Hi, its very nice and simple plugin. But it can be improve for better with more features…

    1. Provide default ranking level for new quiz in admin.js
    This will help a lot for setting up new quiz rather than typing rankings each time… It can be easily done with the following enhancement –

    {
    "label": "Knowledge Levels <small>(1 = Best, 5 = Worst)</small>",
    "q": "Level 1",
    "type": "text",
    "required": true,
    "jsonName": "level1",
    "value": "Perfect!"
    },
    {
    "q": "Level 2",
    "type": "text",
    "required": true,
    "jsonName": "level2",
    "value": "Good work!"
    },
    {
    "q": "Level 3",
    "type": "text",
    "required": true,
    "jsonName": "level3",
    "value": "Not bad!"
    },
    {
    "q": "Level 4",
    "type": "text",
    "required": true,
    "jsonName": "level4",
    "value": "Keep trying!"
    },
    {
    "q": "Level 5",
    "type": "text",
    "required": true,
    "jsonName": "level5",
    "value": "Need more practice!"
    }
    
    if (quizValues != null) {
     value = plugin.formHelper.htmlspecialchars(quizValues.info[field.jsonName]);
    }
    else {
     value = field.value ? field.value : '';
    }

    2. Providing correct-wrong marker icons in front.css for correct, incorrect classes will make the response look beautiful.

    3. Facility for Question bank. This one also can be easily implemented with a field key (no. of allowed questions) in the question table. This will help in loading a small no. of question from the table and the visitor will get random fresh question each time the quiz is loaded.

    great plugin,
    Thanks!

    https://www.ads-software.com/extend/plugins/slickquiz/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter biswajeet

    (@biswajeet)

    Question field should be changed to textarea from textfield so to have better flexibility and comfort in composing long formatted questions…

    thanks.

    Plugin Author jewlofthelotus

    (@jewlofthelotus)

    @biswajeet – Just pushed out the newest version which includes the question input to textarea change you requested. Great idea! Thanks!

    Hoping to get to some of your other requests in a future release!

    Florin

    (@florinhumanstrategicsro)

    Hi,

    Thank you for your work. This plugin is wonderful!
    I think that If it could save the total amount of response time of each respondent it will be great. The option to randomly select just N items of total number of items for each test it will be also great.

    Thank you again for your great work!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘A few improvement suggestion’ is closed to new replies.