01-03-2017, 10:44 PM
You can always use the (poorly named) checkMenu function to hide/show content on the page based on access level, so if you have a regular page you can pop in admin only features by putting in...
Code:
if (checkMenu(2,$user->data()->id)){
Code:
//special admin-only code goes here...
Code:
}