Raaz

Results 2 issues of Raaz

I followed all steps correctly but it was not working. List page was not showing anything. After a lot of digging , was able to make the list page working...

[tutor/templates/single/quiz/parts/question.php](https://github.com/themeum/tutor/blob/master/templates/single/quiz/parts/question.php#L124) Line number 124 : `$question_description = wp_kses_post( stripslashes( $question->question_description ) ) ; ` proposed change `$question_description = do_shortcode( wp_kses_post( stripslashes( $question->question_description ) ) );` The updated code enables the...