How would I move the display of the editors list to the end of each node (when the node is viewed)? Great module btw...
Either with CSS:
function theme_node_editors($node) { $content = array('#value' => '', '#weight' => '-2');
and
function theme_node_viewers($node) { $content = array('#value' => '', '#weight' => '-2');
just change the weight from '-2' to '5' or something like that.
Thanks!
Comments
Comment #1
freddyseubert commentedEither with CSS:
and
just change the weight from '-2' to '5' or something like that.
Comment #2
ianchan commentedThanks!