Hi, I am interested in using your quiz. I know some featu…
Hi,
I am interested in using your quiz. I know some features are in development. But if you can temporarily fix or provide a quick remedy, greatly appreciated.
- Is there a way to get the font to adhere to the default WP template?
- Once the quiz is taken completely, is there a way not to go back and show the entire questions? I mean it has to be disabled for the user who has completed. This way, say students cannot create a question bank.
- Can I show an image in a question and ask answers either “short answer – certain character; case insensitive” or as a MCQ?
I would be happy to buy the plugin, if it has the above features as it is quite essential. Please help.
This thread has been imported from harmonicdesign.ca/hd-quiz/
Hi Mark,
for your first question – the fonts already inherit the styles from your theme. If you can send me an example of a quiz, I can take a look and send you some custom CSS to force this for you.
For your second question: sure can! Add the following to your theme’s functions.php
file and the questions will be removed once the quiz has been completed.
function hdq_mark_submit_2($quizOptions) { array_push($quizOptions->hdq_submit, "hdq_mark_submit_2"); return $quizOptions; } add_action('hdq_submit', 'hdq_mark_submit_2');function hdq_mark_submit_2_before() { ?>
function hdq_mark_submit_2(){ const questions = document.getElementsByClassName("hdq_question"); while(questions.length > 0){ questions[0].remove(); } }
<?php
}
add_action('hdq_before', 'hdq_mark_submit_2_before');For your third question set:
There is an option on the “extra” tab to set a question featured image. This will display the image as part of the question. HD Quiz also has multiple question types. Default Multiple choice, multiple choice images, and text/input based. The latter is what will allow you to create questions where a user needs to type in their answers. This question type is cAsE iNsEnSiTiVe and allows you to add multiple correct spellings / answers as well.Lastly, the plugin is 100% free, so no need to pay for anything. However, I do have a Patreon page with a lowly number of supporters, so please consider becoming a contributor if you are enjoying HD Quiz 🙂
NOTE: The code I provided was formatted poorly – please do not use it.
I’ve added the code to a pastebin so that the formatted is kept correctly. Please see the correct code to add here
Hi Dylan,
You are absolutely awesome. I will contribute for sure. I am not a free loader. Your ethics and work is commendable.
Thanks for being prompt.
Will you be able to send me your email ID? so that I can share the link for you to see? IT is not inheriting the template. Fonts are big.
You can use the contact form on the homepage to send me the details.
Hi Dylan,
Just sent you the email from gmail.
PLease check.
Thanks,
If you are enjoying HD Quiz please leave a review here on the official WordPress.org page. HD Quiz is developed by me, just some dude, and is supported and available for free. It may seem dumb, but truly nothing makes me happier than knowing that people are using and loving HD Quiz and my hard work.
This thread has either been marked as complete or has been automatically closed due to inactivity.