Quote Originally Posted by vitalwares View Post
is there any way to also turn off the information on the admin home page (the page you land on then you log into admin).

What I really want to achieve is not show any customer or order information to some of my employees, and this info is right there on the admin home page, any way to conceal it ?
There are no switches to turn this off (though they are on the TO DO list for a future version of Admin Profiles.

For the time being you would have to make code changes. These would be done in in the admin/index.php file as follows:

1) Find out what your admin ID is (you can see it to the left of your name on the Admin Settings page

2) Open admin index.php and fin the following lines
PHP Code:
<div id="coltwo">
<
div class="reportBox"
3) Insert the following between them
PHP Code:
<?php if ($_SESSION['admin_id'] == <your admin ID>) { ?>
4) Go down 12 lines and insert the following immediately after the </div> line
PHP Code:
<?php ?>
5) Now do the same between the following lines
PHP Code:
<div id="colthree">
<
div class="reportBox"
and after the first </div> line a further 12 lines down.