Viewing 1 replies (of 1 total)
  • Thread Starter angsaysrawr

    (@angsaysrawr)

    I figured this out.

    You will need to edit the UserAccessManager.class.php file in the class folder.

    Look for the following:

    if (count($aGroups) > 0) {
                $sLink .= ' | '.TXT_UAM_ASSIGNED_GROUPS.': ';
    
                foreach ($aGroups as $oGroup) {
                    $sLink .= $oGroup->getGroupName().', ';
                }
    
                $sLink = rtrim($sLink, ', ');
            }
    
            return $sLink;
        }

    You need to replace that code with:

    if (count($aGroups) > 0) {
                $sLink .= ' ';
    
                foreach ($aGroups as $oGroup) {
                    $sLink .= ' ';
                }
    
                $sLink = rtrim($sLink, ', ');
            }
    
            return $sLink;
        }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove " | Access Groups " behind post title for Admins’ is closed to new replies.