Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author Udit Rawat

    (@udit-rawat)

    Currently multiple answer is not supported in this plugin, we are updating it have more advance options and will also put multiple answer feature in it’s new version that will be launched in this year

    Hi I am new to PHP and wordpress…
    I have installed Exam Matrix plugin and could make the Q set successfully.
    Can you help us with more details how to call it in a page?
    Also the user login module does not work properly

    Plugin Author Udit Rawat

    (@udit-rawat)

    Hello

    Hope you doing well !!

    You need to follow all the instruction to create a complete questionnaire, and you didn’t require to call it on your theme it automatically show test on page, if need better integration with your theme just follow installation instruction.

    Can you provide your site url so i better understand your issue

    Thanks

    Hello Sir

    Sir I have installed your plugin and created quiz and it is running successfully but i want to ask you how to call widgets that provided in plugin so that i can ask to user about registration and membership or whether user wants to take demo test and all…..

    Please sir help me its urgent!!!!

    Plugin Author Udit Rawat

    (@udit-rawat)

    Hello,

    Hope you are doing well !!

    There are two widgets available in plugin one is for ajax login and other for registration, you can just drag them to your sidebar and they will shown on your theme.

    If you want to call them dynamically then please go through this page http://codex.wordpress.org/Function_Reference/dynamic_sidebar.

    There are some other things which you might want to know, like if your sidebar not visible on test page then please add theme support to your theme and remember if uesr is not login then registration sidebar will show registration form and if user is logged in then it will show user profile and available questionnaire.

    Please let me know if you need some more clarification.

    Thanks
    Udit R

    Hello Sir!!

    Thanks for your support but what I want is i don’t want these widgets on sidebar but i want to call them dynamically as if user not logged in then the test page shows “session out!!Start again” which i don’t want but i want that user should be redirected to registration and login page i.e. in short i want to say widgets should be shown on a page rather than a sidebar.

    So i want to ask you what changes i have to carry out for my task

    Thanks again!!!!

    Plugin Author Udit Rawat

    (@udit-rawat)

    Session Out is shown because user is not logged in at the movement,
    Just go for the following steps
    1:- I add theme support or customize “single-ex_test.php” ( http://wordpress.org/plugins/exam-matrix/installation/ )

    2:- edit single-ex_test.php and provide condition for not login users for e.g

    <?php
       if ( !is_user_logged_in() ) {
    	$location = "Location:".get_bloginfo('siteurl')."/registration-page-slug/";
    
    	    header($location);
    	}
    ?>
    <?php get_header(); ?>
    <div class="page">
        <div class="container">
            <?php get_sidebar(); ?>
            <div class="content">
                <div class="data">
                    <?php require_once('template.inc'); ?>
                </div>
            </div>
        </div>
    </div>
    <?php get_footer(); ?>

    3:- on registration page call registration widget dynamically for this take reference from here.
    http://codex.wordpress.org/Function_Reference/dynamic_sidebar.

    Thanks

    Hello Sir!!!

    Thanks a lot sir for your help it works.

    Thanks once again

    Hello Sir!!

    Sir,Is it possible to draw performance graph and generate certificate from any other plugin from test generated by your plugin i.e. is it possible to config other plugins from your plugin.

    Please give me information about this thing.I will highly oblige to you.

    Thanks a lot!!!!

    Plugin Author Udit Rawat

    (@udit-rawat)

    Yes you can generate chart and result by custom code, for generating result i recommend to use some pdf php libs and for chart you can use canvas or rgraph ( http://www.rgraph.net/examples/index.html ), for both you need to write custom integration code.

    We are going to introduce some new exciting features in next major version like multiple answer support, import & export function, customization hooks, result with performance chart and most important android support.

    Thanks

    Thank you sir once again!!!!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Multiple answer support?’ is closed to new replies.