jespe
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Start Quiz button isn't clickablewp-pro-quiz > lib > view >WpProQuiz_View_FrontQuiz.php
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Start Quiz button isn't clickableFor mi is good to add a line code in WpProQuiz_View_FrontQuiz.php file:
<script type="text/javascript"> jQuery.noConflict(); //line added jQuery(document).ready(function($) { $('#wpProQuiz_<?php echo $this->quiz->getId(); ?>').wpProQuizFront({ quizId: <?php echo (int)$this->quiz->getId(); ?>, mode: <?php echo (int)$this->quiz->getQuizModus(); ?>, globalPoints: <?php echo (int)$quizData['globalPoints']; ?>, timelimit: <?php echo (int)$this->quiz->getTimeLimit(); ?>, resultsGrade: <?php echo $resultsProzent; ?>, bo: <?php echo $bo ?>, qpp: <?php echo $this->quiz->getQuestionsPerPage(); ?>, catPoints: <?php echo json_encode($quizData['catPoints']); ?>, formPos: <?php echo (int)$this->quiz->getFormShowPosition(); ?>, lbn: <?php echo json_encode(($this->quiz->isShowReviewQuestion() && !$this->quiz->isQuizSummaryHide()) ? __('Quiz-summary', 'wp-pro-quiz') : __('Finish quiz', 'wp-pro-quiz')); ?>, json: <?php echo json_encode($quizData['json']); ?> }); }); </script>The same in line 152 aprox:
<script type="text/javascript"> jQuery.noConflict();/*line added*/ jQuery(document).ready(function($) { $('#wpProQuiz_<?php echo $this->quiz->getId(); ?>').wpProQuizFront({ quizId: <?php echo (int)$this->quiz->getId(); ?>, mode: <?php echo (int)$this->quiz->getQuizModus(); ?>, timelimit: <?php echo (int)$this->quiz->getTimeLimit(); ?>, resultsGrade: <?php echo $resultsProzent; ?>, bo: <?php echo $bo ?>, qpp: <?php echo $this->quiz->getQuestionsPerPage(); ?>, formPos: <?php echo (int)$this->quiz->getFormShowPosition(); ?>, lbn: <?php echo json_encode(($this->quiz->isShowReviewQuestion() && !$this->quiz->isQuizSummaryHide()) ? __('Quiz-summary', 'wp-pro-quiz') : __('Finish quiz', 'wp-pro-quiz')); ?> }); }); </script>Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to add questions quickly?Hi deonmfe,
I have similar problem; a loop login-register ;-(Forum: Plugins
In reply to: [Wp-Pro-Quiz] Quiz doesn't startThanks!!
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Quiz doesn't startThe test works fine in preview mode but the init test button does not work in the front-end:
http://www.educaplus.org/tester/
Can you help me?
Viewing 5 replies - 1 through 5 (of 5 total)