Closed (fixed)
Project:
E-Publish
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
4 Nov 2009 at 17:56 UTC
Updated:
18 Mar 2011 at 16:50 UTC
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
Comment #1
dooug commentedI 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!
Comment #2
sdague commentedYou 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.