I found out that I needed to define the forumslist variable, but how? I tested the one below and it shows the forums but, it doesnt use the displayforuim.php variables and conditions.
PHP Code:
$show[forumslist] = true;
eval('$displayresources = "' . fetch_template('displayresources') . '";');
so then I try to include the forumdisplay.php like below:
PHP Code:
require_once("forumdisplay.php");
eval('$displayresources = "' . fetch_template('displayresources') . '";')
And yet still nothing. Can someone explain why I cant just include the .php file? I resumed and search the forumdisplay.php and found all the includes so then I tried the below as well:
PHP Code:
require_once("forumdisplay.php");
require_once('./global.php');
require_once(DIR . '/includes/functions_forumlist.php');
require_once(DIR . '/includes/functions_bigthree.php');
require_once(DIR . '/includes/functions_forumdisplay.php');
require_once(DIR . '/includes/functions_prefix.php');
eval('$displayresources = "' . fetch_template('displayresources') . '";')
Yet still, it showed nothing.