I used a fairly simple include statement to read the contents of the default conditions page.
Look for this file:
\includes\templates\YOUR_TEMPLATE\term_print\tpl_main_page.php
Here is an example of what I use:
It gets the contents of the page and puts it into a simple table to look a little better.Code:<body id="TermPrint" onload="resizeTo(640,640);"> <?php echo HEADING_PRIVACY_POP ?> <div align="left"><input type="button" value="Print This Page" onClick="window.print()"> <align="right"><input type="button" value="Close Window" onClick="window.close()"></div> <div align="center"> <?php echo "<table width='90%'>"; echo "<tr>"; echo "<td style='border:solid 1px #999; padding:10px; background-color:#FFF;'>"; include 'includes/languages/english/html_includes/YOUR_TEMPLATE/define_privacy.php'; echo "</td></tr></table><br><br>"; ?></div> </body>
I'm happy with it.


Reply With Quote
