Posted by cpg_barry on October 31, 2011 at 11:17pm
I am new to Drupal and Quiz. I am using Quiz for a situation where the quiz is a story and the questions are about the story. I need to have the story display above each question for reference. I created a content View, but it shows the information box and the button that starts the quiz. A block of that View only shows the title link. A Quiz View doesn't have the Quiz directions as an available field. How can this be accomplished? Thanks.
Comments
Solved
Created a block containing the following code:
<?phpif(arg(0) == 'node' && arg(2) == 'take') {
$story_node = node_load(arg(1));
print $story_node->body['und'][0]['value'];
}
?>
Set the block to Highlighted.