I am also trying to display a logo and a full page url in the print page.
My way of going about it is to edit the index2 file in the Joomla root. I am oblovious to any side-effects that might have, so please alert me to any adverse consequences of doing so.
In index2.php I inserted the following:
Code:
Print & email friendly version of: <a href="http://www.<?php echo $mosConfig_sitename; ?><?php echo $_SERVER["PHP_SELF"] ?>"><?php echo $mainframe->getPageTitle() ?></a> (© <?php echo $year?> <?php echo $mosConfig_sitename; ?>)<br>
Link to full page: <a href="http://www.<?php echo $mosConfig_sitename; ?><?php echo $_SERVER["PHP_SELF"] ?>">http://www.<?php echo $mosConfig_sitename; ?><?php echo $_SERVER["REQUEST_URI"] ?></a><br>
Unfortunately this does not quite work because the linked url display picks up the url of the print page not of the full page where the print button was clicked. A little bit of php code will be needed to convert the url by stripping a few parts from it, but I don't know how to code php. So, I posted a question about how to do this but got no response (see
http://forum.joomla.org/index.php/topic,234610.0.html).
As I am not hindered by any real knowledge about Joomla or php it seems to me that this is very close to a solution that can be implemented very easily, so any suggestions are welcome!
UPDATE: I solved it, see
http://forum.joomla.org/index.php/topic,235086.0.html.