...Add a link to print-friendly book page
m_freeman2004 - June 24, 2006 - 13:43
Hi,
I've found that some sites are linking straight to print-friendly versions of book pages on my site, but that on these pages there is just the text of the article. There are no links on print-friendly pages back to the web-version or even the home page. How can I add such a link?
I'm using 4.6.8 with a modified Box_Grey/phptemplate theme. Is it a case of hacking the book module or can it be done via the theme?
Regards,
Marcus.

Links on print-friendly pages
Hi,
I managed to do this by hacking the book.module on line 662...
<?php$html .= '</head><body>'. $output;
$html .= '<br>';
$html .= l(t('Back to web version'), 'book/'. $node->nid, array('title' => t('Return to the web version of this page')));
?>
However, I'd rather not hack a core module, so is there a way of doing this via theming?
Regards,
M.