Title: Remove &quot; | Access Groups &quot; behind post title for Admins
Last modified: August 31, 2016

---

# Remove " | Access Groups " behind post title for Admins

 *  [angsaysrawr](https://wordpress.org/support/users/angsaysrawr/)
 * (@angsaysrawr)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-access-groups-behind-post-title-for-admins/)
 * I have Show admin hint at Posts set to “No”, however I am still seeing | Assigned
   Groups: (groups here)” after the post title when I am logged in as an Admin.
 * Is there anyway to remove that? I dislike the way it looks and it’s not necessary,
   especially if I have Show admin hint at posts as no.
 * [https://wordpress.org/plugins/user-access-manager/](https://wordpress.org/plugins/user-access-manager/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [angsaysrawr](https://wordpress.org/support/users/angsaysrawr/)
 * (@angsaysrawr)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/remove-access-groups-behind-post-title-for-admins/#post-7002353)
 * 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.

 * ![](https://ps.w.org/user-access-manager/assets/icon.svg?rev=1563783)
 * [User Access Manager](https://wordpress.org/plugins/user-access-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-access-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-access-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/user-access-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-access-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-access-manager/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [angsaysrawr](https://wordpress.org/support/users/angsaysrawr/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/remove-access-groups-behind-post-title-for-admins/#post-7002353)
 * Status: not resolved