Thanks for your reply...
[QUOTE=Michael Morris]Well, first off, if you want to display any custom template you'll need to parse it. Add the following code to your PHPINCLUDE_START template
PHP Code:
eval('$TEMPLATENAME = "' . fetch_template('TEMPLATENAME') . '";');
I wasn't exactly sure where to put that within the PHPINCLUDE_START template so I just put it at the bottom like this:
// Example of how to include a seperate file:
// ob_start();
// require("yourheader.html");
// $header = ob_get_contents();
// ob_end_clean();
eval('$supermoto_swag = "' . fetch_template('supermoto_swag') . '";');
[QUOTE]Now as to the rest of you're question, I'm not sure I fully understand. Are you wanting to open a page which is defined in that template?? If so, then do this..]
Not really sure what you mean. I intend to use the new template as a shopping page. All the page will have on it is the site logo (and maybe forum navigation bar) Below that will be the stuff for sale.
Users will see an advertisement on the forum home page that says click here to buy t-shirts etc. They click on the banner and the new template opens (in a new window). The new template has t-shirts and such for sale. When they're done looking at that page, they just close the window and they're back to the forum.
If you're on a web site and click on an ad, it takes you to the site that is sponsoring that ad. Mine is the same thing only it takes you to the new template.
Hope that makes more sense?