Yes, i am using the xdforum plugin now and want to use vanilla forum instead. So i am aware where to get the plugin and how to use the xdforum plugin. What i am asking is where in this file:
< ? php
// Note: This file is included from the library/Framework/Framework.Control.Head.php class.
$HeadString = ‘<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” xml:lang=”‘.$this->Context->GetDefinition(‘XMLLang’).'”>
<head>
<title>’.$this->Context->Configuration[‘APPLICATION_TITLE’].’ – ‘.$this->Context->PageTitle.'</title>
<link rel=”shortcut icon” href=”‘.$this->Context->StyleUrl.’favicon.ico” />’;
if (is_array($this->StyleSheets)) {
while (list($Key, $StyleSheet) = each($this->StyleSheets)) {
$HeadString .= ‘
<link rel=”stylesheet” type=”text/css” href=”‘.$StyleSheet[‘Sheet’].'”‘.($StyleSheet[‘Media’] == ”?”:’ media=”‘.$StyleSheet[‘Media’].'”‘).’ />’;
}
}
if (is_array($this->Scripts)) {
$ScriptCount = count($this->Scripts);
$i = 0;
for ($i = 0; $i < $ScriptCount; $i++) {
$HeadString .= ‘
<script type=”text/javascript” src=”‘.$this->Scripts[$i].'”></script>’;
}
}
if (is_array($this->Strings)) {
$StringCount = count($this->Strings);
$i = 0;
for ($i = 0; $i < $StringCount; $i++) {
$HeadString .= $this->Strings[$i];
}
}
$BodyId = “”;
if ($this->BodyId != “”) $BodyId = ‘ id=”‘.$this->BodyId.'”‘;
echo $HeadString . ‘</head>
<body’.$BodyId.’ ‘.$this->Context->BodyAttributes.’>’;
? >
do i put < ? php require(‘../wp-blog-header.php’); ? > ?? I have tried everywhere and with the full < ? php require(‘wp-blog-header.php’); ? > outside of the beginning <?php and ending ?>, i get this error:
Fatal error: Call to a member function on a non-object in /srv/www/htdocs/wp-includes/cache.php on line 206
With just require(‘../wp-blog-header.php’); inside of the begining < ? php and the ending ?>, i get this error:
Parse error: parse error in /srv/www/htdocs/forum/themes/head.php on line 9
with some of the forum page that shows-up. See this last example in action at https://www.mytimewithgod.net/forum and see what i am trying to achieve here https://www.mytimewithgod.net/xdforum
I also know by adding ../wp-blog-header.php to files outside of WP, it IS possible to “integrate” those files outside of WP to your existing theme. I have done it many times (see here https://www.mytimewithgod.net/bible (and click on Genesis books 1-10) and here https://www.myitmewithgod.net/forum/people.php (this is the sign-on page for the vanilla forum))