I’m not the developer, but I found a workaround for this issue (beware though, since you have to edit plugin php files, if they release an update this will be overwritten)
Look for the file: plugins\quiz-master-next\php\class-qmn-quiz-manager.php
There, you will find the variable$question_display a tag as follows:
<div class='quiz_section question-section-id-{$mlw_question->question_id} slide{$mlw_qmn_section_count}'>
To add the category, you can add in the end {$mlw_question->category}
Finally, it should look like this:
$question_display .= "<div class='quiz_section question-section-id-{$mlw_question->question_id} slide{$mlw_qmn_section_count} {$mlw_question->category}'>";
Hope it helps.
-
This reply was modified 8 years, 10 months ago by
sir_arles.
-
This reply was modified 8 years, 10 months ago by
sir_arles.