View Full Version : Quiz / Trivia plug-in
boccio
02-25-2009, 12:16 PM
We just released Quiz / Trivia plug-in for Vivvo 4.1
This trivia/quiz plug-in allows you to easily make and manage online tests on your website. Create tests in minutes and let your visitors answer fun and challenging questions.
It is free, and available for download to all valid license holders on Download center:
http://www.vivvo.net/resources/downloads/plugins/quiz-trivia.html
ChefTalk
02-25-2009, 09:48 PM
That is Awesome thanks! I will definitely use that.
Impaler
03-07-2009, 06:32 PM
That is Awesome thanks! I will definitely use that.
hi, have you set up a demo somewhere so I could see it live?
A great way to extend this module is to add a possibility for a sweepstake. In which users can only participate once.
For example, a user fills out the answer to a question and the answer is stored in the database (or e-mailed to the form owner). The user can only fill out this form once. The sweepstake only runs during a defined period (for a week, or a month). The system or the form owner chooses the winner after this period has passed.
Spider88
07-09-2009, 07:16 AM
categories for the quizes? Like music, movies, politics etc??
askmediy
12-05-2010, 12:08 AM
I love this plugin. Is there a way to submit a different triva per article ? I mean it gives me this to place in a tpl file <vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="3" />
But I just don't know how to insert into a article
Impaler
12-07-2010, 11:41 AM
probably you wont be able to do that
askmediy
12-07-2010, 12:18 PM
Yea I was hoping I could. I run a DIY site. Meaning I make home improvement videos and DIY articles. I would love to have a questions area to each one so the user could see how much they learned from that article. Dam I say. Thank you.
bobster65
12-10-2010, 05:57 PM
on your article template, just use if statements per article ID and add the trivia link per article ID. pretty easy actually.
askmediy
12-11-2010, 04:28 AM
Humm, could you elaborate a little more on that for me please. Thank you
bobster65
12-11-2010, 11:27 PM
Humm, could you elaborate a little more on that for me please. Thank you
This is something you will want to become familiar with: http://wiki.vivvo.net/devdoc
Use the vte if statement(s) for evaluating the article object. You can evaluate the article to test for specific article ID's by checking the ID parameter of the Articles Object as below..
This example would check to see if the article being envoked is ID # 12345. If it is, it will execute the code within the if statement.. if not, it won't. Simple as that. You can place as many of these as you want to and they will only display for the article ID you want..
<vte:if test="{article.id} = '12345' ">
<vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="3" />
</vte:if>
This would be an example for displaying different trivia on different articles.
<vte:if test="{article.id} = '12345' ">
<vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="1" />
</vte:if>
<vte:if test="{article.id} = '13348' ">
<vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="5" />
</vte:if>
<vte:if test="{article.id} = '1242' ">
<vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="6" />
</vte:if>
<vte:if test="{article.id} = '775' ">
<vte:include file="{VIVVO_TEMPLATE_DIR}box/plugin_trivia.tpl" search_tid="11" />
</vte:if>
askmediy
12-12-2010, 01:07 AM
Man oh man, you're the best. Thank you so so much. I even learned a lot. You are my king. What ever I could do for you just ask away. Thank you so so much. Sure glad I bought this script. Much better then Interspires wp. Or at leas the help is. Thanks again.
Bartek55
04-11-2012, 08:37 PM
Hi, I have a question.
After installing the plugin and setting up a Quiz.
How does admin can see results of the Quiz ?
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.