I want to make a block to display a random node teaser.
Here's the code I inserted into the block:
<?php print nodequeue_fetch_random(3, $teasers = true, $links = true); ?>
I also tried
<?php print nodequeue_fetch_random(3, true, true); ?>
I even tried:
<?php print nodequeue_nodes(3); ?>
In all cases, the block only shows the title of the nodes, not the teaser.
How do I get the queue to display the teasers?
Please help,
ktnk.
Comments
Comment #1
ktnk commentedThis problem was due to the excerpt module.
Solution was to either manually enter a teaser in the excerpt module, or to disable the module and re-save affected nodes.
ktnk