Thanks for a great module.. I've been using e-publish to implement an e-newsletter for a non-profit.

I'm having a minor issue which I can't figure out since I'm not a PHP expert. I'm trying to figure out how to move the prev/next navigation, ie. the epublish_navigation block, to the TOP of an article instead of the bottom.
For example, please see the following page: http://saheli-austin.org/d6/2009-fall-enews-from-ed

Also, on a related note, is there a way to clone the "current_edition" block so that I can place it in different locations depending on which page I'm on?

Thanks,
Arvind

Comments

dooug’s picture

I currently don't know the answer to your question, but in response to your question about displaying the block in different locations: Check out the MultiBlock module. Hope that helps!

sdague’s picture

Status: Active » Closed (fixed)

You can do this in your theme by implementing theme_epublish_navigation($node, $editions). Copy that function out of the epublish.module, change "theme" to "yourthemename" then change the weight at the end to -10 (or some high negative number). That will move it to the top of the body content instead of the bottom.

Feel free to reopen if this answer didn't work for you.