Wrap XenForo in custom Header/Footer?

klamm

Member
Is it possible to "wrap" XenForo into a custom header/footer, to keep the top navigation/CI of our site?
... without using iframes for sure.
Like:

include("header.php");
--- complete XenForo content ---
include("footer.php");

We did this with VB3 here: https://www.klamm.de/forum/ and are thinking about switching to XF :)
 
Yeah you can use code listeners to hook into desired positions.
Just get your header/footer stored in variables and echo them in template PAGE_CONTAINER.
It takes a bit of time and programming skills to dig in, but it's possible. :)
 
Top Bottom