2016-04-12, 18:08:27
(2016-04-12, 07:55:41)DesruX Wrote: I have managed to make it show two different texts based on login status, but I still cannot show the actual content of the page with the "get_page_content();" that is normally used:
Yes because $content is a global variable also used by GetSimple. To get it working you could change the line:
PHP Code:
$content = frontainer_get_content();
PHP Code:
$frontainersContent = frontainer_get_content();
PHP Code:
<?php echo $content; ?>
PHP Code:
<?php echo $frontainersContent; ?>
That should do the trick.