[Development Guides Home](/guides) >> [Guide to cPanel Interface Customization and Branding](/guides/guide-to-cpanel-interface-customization-and-branding) # Guide to cPanel Interface Customization - Hide the Onboarding Assistant ## Introduction The *Onboarding Assistant* will display for all new user accounts. ## Hide the Onboarding Assistant for new users To hide the *Onboarding Assistant* for new users, run the following command, where `username` is the cPanel account name: ```bash echo '{"personalization": {"cp-welcome-panel_dismissed": 1}}' | uapi --user=userName --input=json --output=jsonpretty Personalization set ``` The API response will resemble the following: ```bash { "apiversion" : 3, "module" : "Personalization", "result" : { "messages" : null, "warnings" : null, "metadata" : {}, "errors" : null, "data" : { "personalization" : { "cp-welcome-panel_dismissed" : { "success" : 1, "value" : 1, "reason" : "OK" } } }, "status" : 1 }, "func" : "set" } ```