Active
Project:
Pro and Con arguments
Version:
5.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
6 Jul 2008 at 20:58 UTC
Updated:
6 Jul 2008 at 20:58 UTC
When the arguments are displayed like comments at the bottom of the parent node, currently, the full text of the argument is shown.
This can be a problem in case of long arguments.
In case you want only a teaser of the argument to appear (with the "Read More" link to see the full argument), you just need to change the node_view statement in procon_views.inc at the bootm from:
$output .= node_view($node);
to:
$output .= node_view($node, TRUE);
The second parameter $teaser is now set to TRUE.