• Resolved appkangaroo

    (@appkangaroo)


    Dear Dev,

    I have a few questions and hope you can answer these. Thanks for the plugin as always and appreciate your time !

    1.I see an option to show answers if the provided answer is wrong but looks like I need to enable for each quiz – is there a way to set this ON for all quizzes. We have quite a few.

    2. The text answer validations seems strict. If the Answer is West Australian Opera Symphony , variations like Western Australian Opera or West Australian Symphony etc should be ok. Right now a single letter variation is flagging as wrong – is there a way to relax this.

    3. For SEO purposes we want to sometimes merge multiple quizzes into a single page. While this function works well if we paste multiple quiz codes on a page, we get this warning and wondering if its just caution and we can still use ? “There is more than one quiz on this page and due to complexity of HD quiz only one is allowed.”

    4. Is there a way to prevent people from ctrl+a and copy all our questions content ? We want to protect our content and only let people do the quizzes but not copy them.

    Many Thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Harmonic Design

    (@harmonic_design)

    I see an option to show answers if the provided answer is wrong but looks like I need to enable for each quiz – is there a way to set this ON for all quizzes. We have quite a few.

    You can add the following code to your theme’s functions.php file (always make a backup of this file in case you make a mistake!).

    function hdq_appkangaroo_force_settings($options)
    {
    	$options->hdq_show_extra_text = "yes";
    	return $options;
    }
    add_action("hdq_init", "hdq_appkangaroo_force_settings");

    The above will ignore the individual quiz settings and force the show extra text option to always be active.

    The text answer validations seems strict. If the Answer is West Australian Opera Symphony , variations like Western Australian Opera or West Australian Symphony etc should be ok. Right now a single letter variation is flagging as wrong – is there a way to relax this.

    Add extra variations as answers. You can have up to 10.

    3. For SEO purposes we want to sometimes merge multiple quizzes into a single page. While this function works well if we paste multiple quiz codes on a page, we get this warning and wondering if its just caution and we can still use ? “There is more than one quiz on this page and due to complexity of HD quiz only one is allowed.”

    It’s not a caution. Do not place more than one quiz on a page – you’ll have issues. You can always create a new quiz and add the questions from other quizzes to it (check out the bulk modify questions button)

    4. Is there a way to prevent people from ctrl+a and copy all our questions content ? We want to protect our content and only let people do the quizzes but not copy them.

    This is not something that will ever be included with HD Quiz. Just off the top of my head, something like this could be easily circumvented by

    • taking a screenshot
    • viewing the source code
    • enabling the browsers “reading mode”
    • disabling javascript
    • pretty much everyone accessing your site also has a camera with them at all times

    Even with a screenshot or photo, with something like Google Lens or any of the many many many free online tools available, you could easily extract the text as well.

    If this is something you REALLY want, then I’d recommend looking for another plugin that will specifically protect certain pages for you. I have not used any of these, so cannot vouch for them, but it looks like Secure Copy Content Protection and Content Locking and WP Protect Content might handle this for you.

    Thread Starter appkangaroo

    (@appkangaroo)

    Thanks for your detailed replies ! Will try and get back if any questions. Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do we make questions not copyable ? And other.’ is closed to new replies.