Thanks. I'm having a bit of a hard time getting up to speed and understanding this, but possibly trying some examples will help me understand it better.
I'd like to install xenforo in my root directory because I'd like to have the shorter urls, and have an existing /gallery which I'd like to replace with XFMG and not have /community/gallery but just /gallery
However, I also have a current php cover page / homepage which I'd like to keep. It has some simple php code to do a random image array, pull some feeds, but very simple php. So I don't need to do a blank page for an add-on or more complicated task, just for one "homepage" so I can keep xenforo's index.php in the root yet recreate my current basic custom php cover homepage.
I found I can eliminate the header/footer/breadcrumb elements which I don't want on the cover page homepage by creating a child style of the default style, assigning it to the one homepage page node, and then changing page_container template in clean style assigned to the one page to only
Code:
<!DOCTYPE html>
<html>
<head>
<title><xen:if is="{$title}">{xen:raw $title} | {$xenOptions.boardTitle}<xen:else />{$xenOptions.boardTitle}</xen:if></title>
</head>
<body>
{xen:raw $contents}
</body>
</html>
But I'll have to come to terms with how to most easily include my existing current php page elements within the xenforo page.
Any further tips/examples would be appreciated. Will read a few more times as well.
Old dog... new tricks... hoping for the best