Updating sites from v3.0 template to v3.1
Adding the print tool
These instructions explain how to add the Print tool function code to a page prior to v3.1.
NOTE: Please check that the Print tool code isn't already present. If it is present, then refer to the "Disabling the Print tool" tab above to learn how to turn the function on and off.
- Find
<head>
Add The script below after the code above. The script below needs to be placed between <head></head>.
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="shortcut icon" href="http://images.wsu.edu/favicon.ico" />
<title>Downloads - Web - Graphic Identity Program - Washington State University</title> -
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="shortcut icon" href="http://images.wsu.edu/favicon.ico" />
<title>Downloads - Web - Graphic Identity Program - Washington State University</title><script src="http://images.wsu.edu/javascripts/print.js" type="text/javascript"></script>
</head>
1. Add a script inside the <head>
- Find
Add The script below needs to be added right above </body>.</body>
</html>- <script type="text/javascript">
// To display the "Print" link pass in true. To hide the "Print" link pass in false.
addPrintLink(true);
</script> - </body>
</html>
- <script type="text/javascript">