FOOTERF

Using as the last lines of the page:

require_once(FOOTERF); 
exit;

eFiction uses its own template system. Instead output to screen, output content to variable and then render it standard e107 way.

$caption is prepared for page caption.

//$tpl->printToScreen( );
$text = $tpl->getOutputContent(); 
e107::getRender()->tablerender($caption, $text, $current);
require_once(FOOTERF); 
exit;

Result:

Result after using FOOTERF

Result with basic e107 Epiphany theme

Commit after those changes:

Last updated