Viewing 15 replies - 1 through 15 (of 17 total)
  • Plugin Author xeno010

    (@xeno010)

    Hello,

    page not found.

    do you have a new link?

    Thread Starter TorsteinH

    (@torsteinh)

    Sorry, I have probably deletedf the page. Here is another one:

    http://www.telemuseum.no/ny/underholdningsavdelingen/quiz/quiz-fra-1993/

    Plugin Author xeno010

    (@xeno010)

    Hello TorsteinH,

    I have found the bug (it is not a wp-pro-quiz error).

    Jquery is included twice.

    In the header (line 33-34):

    <script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'></script>
    <script>window.jQuery || document.write('<script src="http://www.telemuseum.no/ny/wp-includes/js/jquery/jquery.js"><\/script>')</script>

    and in the footer (line 480):

    <script src="http://www.telemuseum.no/ny/wp-content/themes/retkom-telemuseet/js/vendor/jquery.js"></script>

    Pls remove jquery from the footer or header and try again.

    Thread Starter TorsteinH

    (@torsteinh)

    Tanks a lot!

    Mvh Torstein

    The same problem here.

    Using WordPress 3.6 with an custom theme and WPQ 0.26
    http://le-network.nl/la-game-engels/

    Already tried different settings and deactivate all other plugins.

    Plugin Author xeno010

    (@xeno010)

    Hello PatrickDuursma,

    you have a lot of javascript errors on your page.

    1:

    Uncaught TypeError: Object #<Object> has no method ‘cycle’ (line 162)

    <script type="text/javascript"> $('.pics').cycle('fade'); </script>

    Remove this line or change to:

    <script type="text/javascript"> try{ $('.pics').cycle('fade'); } catch(e){} </script>

    2:

    Uncaught ReferenceError: settings is not defined (line 151 in wp-content/themes/le-network/js/jquery.innerfade.js)

    $("#"+settings.slide_nav_id+" li").each(function() {
         ...
    }); //each

    Remove this block (line 151-167) or change to:

    try{
    $("#"+settings.slide_nav_id+" li").each(function() {
         ...
    }); //each
    } catch(e) {}

    Try again

    same problem for me http://www.lifeguarding.nl
    just downloaded the plug and tried to make a test quiz but the quiz wouldn’t start??

    Plugin Author xeno010

    (@xeno010)

    Hello babacool,

    I have found the bug (it is not a wp-pro-quiz error).

    Jquery is included twice.

    In the header (line 51):

    <script type='text/javascript' src='http://www.lifeguarding.nl/wp-includes/js/jquery/jquery.js?ver=1.10.2'></script>

    (Correct an perfect.)

    and again in the footer (line 96):

    <script src="/wp-content/themes/lifeguarding/js/jquery.js" type="text/javascript"></script>

    (Bad)

    Please remove this line from the header and try again.

    Hi,

    I am having the same problem mentioned in this thread, the quiz will not load when I click start but the preview is fine. I am relatively new to both WordPress and jQuery so am probably missing something very basic. Can anyone help me out as to what the problem might be?

    http://www.caramoore.co.uk/testsite/?page_id=106

    Thanks in advance.

    Plugin Author xeno010

    (@xeno010)

    Hello paul@glow,

    Your jQuery integration is incorrect.

    line 9:
    <script type='text/javascript' src='http://www.caramoore.co.uk/testsitehttphttp://code.jquery.com/jquery-latest.js'></script>

    The url is wrong (404).

    And

    line 18-20:

    <script type="text/javascript"
       src="http://www.caramoore.co.uk/testsite/wp-content/themes/caramoore//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

    The url is wrong (404).

    And

    Jquery is included twice (line 9 and line 18-20)

    Please fix the errors and check the “Settings in case of problems” option in
    -> Admin
    -> Wp-pro-Quiz
    -> Global settings
    -> Settings in case of problems

    Try again

    xeno010

    Having the same problem, after upgrading my theme, WordPress and plugins.
    http://languagemadefun.com/maori-language-week-quiz

    Plugin Author xeno010

    (@xeno010)

    Hello kiwidivr,

    you hava a javascript error in “/wp-content/themes/rttheme10/js/script.js” line 193: “Uncaught TypeError: Object [object Object] has no method ‘tooltip'”

    Pls replace:

    jQuery(document).ready(function() {
    jQuery(".photo_gallery img[title], .rt_auto_thumb_tooltip[title]").tooltip({
    
       // tweak the position
       offset: [40, 0],
    
       // use the "slide" effect
       effect: 'slide'
    
    // add dynamic plugin with optional configuration for bottom edge
    });
    });

    with:

    jQuery(document).ready(function() {
    	try {
    		jQuery(".photo_gallery img[title], .rt_auto_thumb_tooltip[title]").tooltip({
    
    		   // tweak the position
    		   offset: [40, 0],
    
    		   // use the "slide" effect
    		   effect: 'slide'
    
    			// add dynamic plugin with optional configuration for bottom edge
    		});
    	} catch(e) {}
    });

    in line 192-203

    Try again

    xeno010

    Excellent, thanks, that solved it. Thought from the other posts it might be a javascript error.
    Great plug-in by the way.

    Hi

    I’m having a similar issue but it doesn’t seem that it’s because jquery is included twice.

    The page for my installation of the quiz is http://ilovetesting.com/istqb-practice-questions

    Thanks

    Hi there

    I run this amazing plugin in several sites but now i found it not compatible with the plugin Top contributors, tryng to intall it at http://www.desocupadolector.com

    I was unistall all plugins and the problems is just with Top contributors. It stop the quiz to start.

    Any idea pls?

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘The Quiz will not start (WP 3.5.2 and WPQ 0.26/0.24)’ is closed to new replies.