Page 1 of 1

Remove Account Settings Button

PostPosted: Wed Jan 27, 2016 8:35 pm
by kbjackson
I have made many changes in the DayBack calendar but can't figure out how to get rid of or hide the Account Settings button. I don't want my users viewing this layout.

Here's a sample.

acct_settings.png
acct_settings.png (30.09 KiB) Viewed 8628 times


Thanks.

Ken

Re: Remove Account Settings Button

PostPosted: Thu Jan 28, 2016 8:56 am
by John Sindelar
Hi Ken,

If you'd like to prevent some users from getting to the Account Settings window, you can edit the script "Load Calendar Settings - On Startup...". Find the comment "Show admin settings" and set the following variable to False for the privilege set you're interested in. So you might do something like:

Code: Select all
If ( Get ( AccountPrivilegeSetName ) = "[Full Access]" ; True ; False )


After changing anything in this script, run the "Upon Opening" script to see your changes take effect.

More on security stuff like this here: http://www.seedcode.com/pmwiki/index.ph ... r.Security

Hope that helps,

John

Re: Remove Account Settings Button

PostPosted: Thu Jan 28, 2016 9:52 pm
by kbjackson
Well that was easy. Didn't think it was in a script. Was thinking it was somewhere in the java script.

Thanks a lot John.

Ken