You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: