New .tpl Page?

Any help would be greatly appreciated,



I need to add a new (physical) .tpl file for content/code not possible through the cms.



Thanks in advance.



James

What version are you running?



Bob

The latest 2.0.12

Not sure whether this would work for you or not but thought I would toss it out there. Have you considered using an Unique HTML block on your page? This allows quite a bit of flexibilty.



Beyond that, there are a couple of hooks in /skins/YOURSKIN/customer/views/pages/view.tpl that might help:

{hook name="pages:page_content"}
{$page.description|unescape}
{/hook}

{hook name="pages:page_extra"}
{/hook}


You could probably use some “if” statements in the hooked file to trigger different includes for different looks.



Bob

Thanks jobo,



I’ll give these a try, all I’m trying to do is add a php include which is easy enough in a .tpl but not possible in tinyMCE.



Thanks again!



James

Got it working.

Could you explain how you got this to work? I am looking for this… Thanks