Hello,
With the auto update, things change overnight about the user experience of our customers in cPanel.
It's fine. Especially if we can easily restore things like before if needed.
I just successfully disabled the Glass Notification to keep the previous cPanel Basic Theme we are used to.
I did that :
- WHM > cPanel > Customization > Custom Style
- Set as Basic.
Then
Here the sources, I get it from there :
- How to disable the Glass theme feedback banner for newly created accounts
- How to dismiss or undismiss the "Switch to Glass" notification
It works like a charm with these command lines, as I just have to copy-past it without thinking too much.
Now, because I am here already, I would like to restore the previous behaviour for 2 things :
- No Welcome Message targeting Email Account Creation and WP Toolkit (as we do not focus on Emails and we support Softaculous by default instead of WP Toolkit)
- Reorder the Features Groups (as we really really not focus on Emails, and our customers want to see first, the "File Manager" and then, "PhpMyAdmin")
Disable (or customise) the Welcome Message Panel :
I found this out :
support.cpanel.net
So using Skeleton, I can disable the Welcome Panel for new accounts. But, I this message appeared overnight, I would also like to disable it globally for all new and existing accounts (or better, customise it as it's not translated in my language and the highlighted features are not the one I want to promote). For me, "Softaculous" and "Open a support ticket" would be more useful feature icons.
And with this one :
support.cpanel.net
I can disable the Welcome Panel for one user using CLI.
I suggest (it would be useful) to edit this article to add the loop which makes possible to disable the welcome message globally.
Maybe something like this? (use with caution, it's my personal command line) :
Please, can someone tell me if my above command line is right ?
Thanks!
Reorder the Features Groups :
Same problem here.
This article explains how to reorder the feature groups for all new accounts and/or the an individual existing account :
support.cpanel.net
But we are missing the straight procedure to reorder the feature groups globally (for all accounts).
I guess, something like this (use with caution, it's my personal command line) :
Tell me if I am right ? 
How to proceed to request the cPanel Support Team to add these additional informations on these 2 articles ?
Thanks in advance.
With the auto update, things change overnight about the user experience of our customers in cPanel.
It's fine. Especially if we can easily restore things like before if needed.
I just successfully disabled the Glass Notification to keep the previous cPanel Basic Theme we are used to.
I did that :
- WHM > cPanel > Customization > Custom Style
- Set as Basic.
Then
Code:
mkdir -pv /root/cpanel3-skel/.cpanel/nvdata/
echo -n "1" > /root/cpanel3-skel/.cpanel/nvdata/xmainSwitchToPreviousBannerDismissed
for i in $(ls /var/cpanel/users); do uapi --user=$i NVData set names=xmainNewStyleBannerDismissed xmainNewStyleBannerDismissed=1; done
- How to disable the Glass theme feedback banner for newly created accounts
- How to dismiss or undismiss the "Switch to Glass" notification
It works like a charm with these command lines, as I just have to copy-past it without thinking too much.
Now, because I am here already, I would like to restore the previous behaviour for 2 things :
- No Welcome Message targeting Email Account Creation and WP Toolkit (as we do not focus on Emails and we support Softaculous by default instead of WP Toolkit)
- Reorder the Features Groups (as we really really not focus on Emails, and our customers want to see first, the "File Manager" and then, "PhpMyAdmin")
Disable (or customise) the Welcome Message Panel :
I found this out :

How to Disable the Welcome Panel Server-Wide for Newly Created Accounts
Introduction In cPanel & WHM version 94, we added the Welcome panel to the cPanel interface. Here is the Welcome panel: The Welcome panel displays common features that new users often ac...
So using Skeleton, I can disable the Welcome Panel for new accounts. But, I this message appeared overnight, I would also like to disable it globally for all new and existing accounts (or better, customise it as it's not translated in my language and the highlighted features are not the one I want to promote). For me, "Softaculous" and "Open a support ticket" would be more useful feature icons.
And with this one :

How To Disable/Enable The Welcome Panel in Version 94 From The CLI?
Note: This article only applies to cases where you want to disable/enable the welcome panel for a specific existing account. In case you wish to disable the welcome panel server-wide, for all newly...
I can disable the Welcome Panel for one user using CLI.
I suggest (it would be useful) to edit this article to add the loop which makes possible to disable the welcome message globally.
Maybe something like this? (use with caution, it's my personal command line) :
Code:
for i in $(ls /var/cpanel/users); do echo '{"personalization": {"xmainwelcomedismissed": 1} }' | uapi --user=$i--input=json Personalization set ; done
Thanks!
Reorder the Features Groups :
Same problem here.
This article explains how to reorder the feature groups for all new accounts and/or the an individual existing account :

How can I set the default order of the feature groups within cPanel?
Introduction When setting up a server you may want to arrange the groups of features within cPanel in a particular order. Maybe you value email actions over databases and want to have the email f...
But we are missing the straight procedure to reorder the feature groups globally (for all accounts).
I guess, something like this (use with caution, it's my personal command line) :
Code:
for i in $(ls /var/cpanel/users); do uapi --user=$i NVData set names='xmaingroupsorder|xmainrollstatus' xmaingroupsorder='files|databases|domains|email|metrics|security|software|advanced|preferences' xmainrollstatus='' ; done
How to proceed to request the cPanel Support Team to add these additional informations on these 2 articles ?
Thanks in advance.
Last edited: