• Is there a way to show Category in frontend?
    Also, I’m wondering is there a way to show the total number of questions and number of current question.?

    Thanks.

Viewing 1 replies (of 1 total)
  • 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.
Viewing 1 replies (of 1 total)

The topic ‘Display categories in frontend’ is closed to new replies.