Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2021-04-02 02:35 PM
Hi all,
I want to hide the Administration icon (up right) when a user logins because I provided Datafeed access and I don't want them to go through the Datafeed...
I know that you can hide Copy button, etc. but Administration icon?
Any ideas?
2021-04-06 09:51 AM
Thanks, try:
<script type="text/javascript">
$('.jss560[title="Administration"]', window.parent.parent.document).hide();
</script>
Advisory Consultant
2021-04-02 02:42 PM
Alexandors, custom object lives inside of an application and in order for it to execute a user would have to visit a record upon entering Archer.
Now, you could use a custom iView as-long-as every user in Archer hasn't changed their default workspace upon logging into Archer.
Advisory Consultant
2021-04-02 02:54 PM
Hi David,
The problem is that the user when he gets in the record see the button and may be curious to go in... and then the problems start... so Workspaces/Iviews cannot do the job.
2021-04-02 04:15 PM
You are talking about this button?
If so, the admin button shows for the users before they actually get into any record. Unless users only get into Archer via a record link and that's it.
Advisory Consultant
2021-04-04 03:30 AM
Hi David,
Yes for this Icon I am talking about.
If you see the following link might be possible?
what then would be the code for it?
2021-04-05 05:19 PM
Try the following Alexandors.
<script type="text/javascript">
$('.ABO-NAV-anv241[title="Administration"]', window.parent.parent.document).hide();
</script>
Advisory Consultant
2021-04-06 01:22 AM
Hi David,
No luck
2021-04-06 08:21 AM
What version of Archer are you on? I tested it on 6.9 with no issues; once I view a record that has the custom object that is.
There is no need for <!Doctype html><head></head><body>...script here... </body></html> tags. Custom objects are inserted into the existing DOM and you're just asking for problems adding them
Advisory Consultant
2021-04-06 08:27 AM
Hi again -
6.7 P.03
2021-04-06 08:44 AM
Do a right-click on the icon and select Inspect and send me a screenshot of the HTML.
Advisory Consultant