Hi @h2nation,
The problem is bug of jaslideshow fixed in the latest version. Or you can quick fix this problem as following:
– Open “helper.php” file in folder “modules/mod_jaslideshow/admin/”.
– Change some lines code as following:
Change
$user = JFactory::getUser(); /*Begin changing*/
...
/**
* modJAAnimation class.
*
*/
/*End changing*/
To
$user = JFactory::getUser();
$allowGroups = array('Super Users', 'Administrator', 'Manager');
$finded = false;
foreach($user->groups as $group=>$group_id)
{
if(in_array($group,$allowGroups) || in_array($group_id, $allowGroups)){
$finded = true;
break;
}
}