how do i get smf into my sites template? for yabbse i just put "<?php require ('../forum.php');?>" into the template.php which was in the yabbse dir. cant figure out how to do it with smf.
There are a few methods... number one:
Open Themes/yourtheme/index.template.php, and look for:
function template_main_above()
{
Just after that, put:
include('../top.php');
(this file should contain everything above the main content..)
Next, look for:
function template_main_below()
{
Now look for the end of that function, and put this:
include('../bottom.php');
(same idea.)
-[Unknown]