themeum/tutor

Shortcode support for quiz question description

Opened this issue · 0 comments

tutor/templates/single/quiz/parts/question.php

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 execution of shortcodes within the quiz question description, thereby providing users with additional functionality, such as the ability to embed video or audio content.