tutor icon indicating copy to clipboard operation
tutor copied to clipboard

Shortcode support for quiz question description

Open raazgemstone opened this issue 2 years ago • 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.

raazgemstone avatar Mar 07 '23 11:03 raazgemstone