Hello ziadjbt78,
Do you have a weblink to a test quiz?
For me it works perfectly: http://www.it-gecko.de/wp-pro-quiz-quiz-plugin-fuer-wordpress.html
Hello Xeno010,
Thanks for your prompt reply.
Please find below the weblink as requested for the test quiz:
http://www.cia.info/quizzes/
Kindly investigate from your end and I would extremely appreciate if you can get back to me with a solution to this.
Thanks so much.
Ziad
Hello ziadjbt78,
I have found the error (your themes).
Your “jquery-ui” integration is wrong
Solution:
Edit “scripts.php” file in “wp-content/themes/AskIt/epanel/page_templates/includes/”
replace:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
with:
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>-->
Edit “functions.php” file in “wp-content/themes/AskIt/epanel/page_templates/”
replace (last line) :
} ?>
with:
}
function at_correct_include_js() {
wp_enqueue_script(
'jquery-ui-tabs',
false,
array( 'jquery' ),
false,
true
);
}
add_action( 'wp_enqueue_scripts', 'at_correct_include_js' );
?>
try again
xeno010
Hello my friend,
I am not sure I was able to locate the same files as the ones you have stated above.
However I have found the same codes but in other locations.
For example for the first code replacement that you referred to I have found the file in here:
wp-content/themes/AskIt/includes/scripts.php
And for the second code replacement I have found it in here:
“wp-content/themes/AskIt/epanel/core_functions.php
Are those the two files that you meant I need to replace the codes in because I have reflected the changes in them and indeed your plugin is now working perfectly fine!
My only concern is that if those are the files that I should have changed and it wont affect the other functionality of my site because the files names and locations are little bit different from what you mentioned in your message?
Please confirm.
Thanks!
Ziad