This topic is locked

Print Help!

1/9/2013 2:42:03 PM
PHPRunner General questions
L
llager author

how can i hide the header and footer and also the page URL from the bottom of the page when i want to print the view page??

L
llager author 1/9/2013



This is not a PHPrunner related topic. Check this link: http://www.howtogeek.com/howto/the-geek-blog/prevent-firefox-or-internet-explorer-from-printing-the-url-on-every-page/



thanks! but i also want to prevent mywebsite's header and footer to show when i want to print a record, i know that i can remove them from the visual editor but i was wondering if i can hide them only when im trying to print.

C
cgphp 1/9/2013

In the "Before display" event of the Print page, you can assign a false value to the header and footer template variables like this:

$xt->assign("header", false);

$xt->assign("footer", false);