I just figured out this one. (wow! and on my own)
JoomLearn is checking the users GID against the standard 0,1,2 category ACCESS values in the "lms.php" file.
| Code: : |
if($access_status>$my->gid){
|
I remarked that line out and simply used...
| Code: : |
if(!in_array($access_status,explode(",",$my->jaclplus))){
|
Now we are checking to see if the category's access value is in our assigned group value array.
Be sure to make this change in both the lmsShowCategories and the lmsShowTests functions.
Let me know if this is wrong.
Colin