@mtsalikis
I had the same issue. What I found to solve was going into the file for models/quiz.php
I edited line 245-246
$answers = $wpdb->get_results($wpdb->prepare("SELECT tUA.*, tC.choice as choice, tC.is_correct as choice_correct,
>tQ.question as question, tQ.qtype as qtype
to:
$answers = $wpdb->get_results($wpdb->prepare("SELECT tUA.*, tC.choice as choice, tC.is_correct as choice_correct,
tQ.title as question, tQ.qtype as qtype
FROM:
tQ.question as question
TO:
tQ.title as question
I found in my SQL table that ‘question’ was empty and my questions were in ‘title’. So when the join happened the actual question didn’t get merged.
-
This reply was modified 5 years ago by samFox.