Posted by Manuel
2014-04-01

Hi, this scripts is great! Is there any way to add a code to a page so only show it if the admin/staff is logged in? Thanx!
Posted by Tom
2014-04-02

Hi Manuel, in the templates ( any files that starts with "tpl." ), you can use IsAdmin function to hide things from non-Admin users like
<?php if ( $sys->IsAdmin() ) { ?>

...anything here will not be shown to non-admin users...

<?php } ?>