In my site menu, which I made on top of my page, I would like to point to several html pages. I would like this pages to load in PT, so the header/footer stay where they are.
It just has to load like the merchant or category pages.
Thank you for the help.
Hello Al,
There is no reason why your own pages cannot call the Price Tapestry header and footer; it should work fine. Your web server will need to be configured so that .html files can contain PHP code, but they normally are. If not, you could just change the file extension to .php. The way to do it then, is just to structure your own pages like this:
ownpage.html
<?php require("html/header.php"); ?>
<p>Your own content here!</p>
<?php require("html/footer.php"); ?>
You won't need any of the html or body tags etc.
Hope this helps!
Cheers,
David.