How would I move the display of the editors list to the end of each node (when the node is viewed)? Great module btw...

Comments

freddyseubert’s picture

Either with CSS:

Or you can change the weight of this div in the module around line 690 where it says:
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.

ianchan’s picture

Status: Active » Closed (fixed)

Thanks!