How can I change home page card text as below image
In the Request Access QuickLink you can alter the labelScript attribute to change this text
By default, it’s set to Manager User Access or Manage My Access
Below is the default script OOTB
<entry key="labelScript">
<value>
<Script>
<Source>
return (quickLinkWrapper.isAllowSelf() && !quickLinkWrapper.isAllowOthers()) ? "quicklink_request_access_label_my_access" : "quicklink_request_access_label_user_access";
</Source>
</Script>
</value>
</entry>
Can Anyone help on this?
Thank you
What is your use case for hiding those tabs?
I don’t see a way to hide the tabs OOTB using the UIConfig - linking doc below
Could use a plugin to hide them or edit the underlying xhtml to alter this behavior
@AMANSINGH12- there is no ootb configuration for this. this can be achieved using a plugin.
Hi @Aman SIngh, If i understand correctly, You want it to change Manage USer Access to something else?? if Yes, you can do it. It will be a small plugin , which can update it. can you elaborate what is needed, you can first try writing your plugin to achieve it, if you need help, let me know, i can write a plugin to achieve it.
You can implement plugin to hide and show whatever you want.
-
To rename Manage User Access to Team Access → Go to Debug → Object Type: Quicklink → Search Request Access → Replace script available in “labelScript” to return “Team Access”. This should update the name in the home page.
-
To hide the options in the identity page: You need to write a simple plugin to inject a javascript code to hide the tabs. below is the code snippet:
if (tabPanel) { var targetTabs = [ 'policyContent', 'historyContent', 'scoreContent', 'activityContent', 'userRightsContent' ]; tabPanel.items.each(function (item) { if (targetTabs.indexOf(item.contentEl) !== -1) { item.tab.hide(); hiddenCount++; } });
Please try it out and let us know if you need any further help.
Note: Found a fix? Help the community by marking the comment as solution. Feel free to react(
,
, etc.) with an emoji to show your appreciation or message me directly if your problem requires a deeper dive.

