How to change admin UI logo
See original GitHub issueQuestion about Keystone
-
How to change the admin UI logo? Like in v4 it’s:
keystone.set('signin logo', '../correct/path/logo.png');
-
Any way to hidden a field that has a default value in the admin UI? for example the
uploadedAt
hide it from UI?
Hide this part, I want to hide it because it has the default value:
keystone.createList('TextList', {
fields: {
...
uploadedAt: {
type: DateTime,
format: 'MM/DD/YYYY h:mm A',
yearRangeFrom: '2019',
yearRangeTo: '2025',
yearPickerType: 'select',
defaultValue: new Date(),
}
},
});
Another question is even set up yearPickerType
to select
, no picker UI displayed, also the CaldenarDay
type has no picker too.
Thanks for the help!
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Custom Admin UI Logo - Keystone 6 Documentation
In this guide we'll show you how to add a custom logo to the Keystone Admin UI. Presently the only replaceable component in...
Read more >Admin UI Theming & Branding | Vendure docs
Specifying custom logos · Install @vendure/ui-devkit · Configure the AdminUiPlugin to compile a custom build featuring your logos:.
Read more >Add your logo to Google Workspace
Upload your logo · Sign in to your Google Admin console. · In the Admin console, go to Menu · To open the...
Read more >How to Change the WordPress Admin Login or Signup Logo ...
To change the logo first we'll need to add this function to the functions.php file. What this code does is that it specifies...
Read more >Custom branding, adminui URLs and custom login page
2. is it possible to customize the admin UI login page (/keystone/signin) ? i.e. I want to use a custom logo ... Change...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes, it’s not a feasible solution. Keystonejs version 5 remove the default logo hook, this issue is link to pull request #2474, you can wait for it.
oh that’s not a feasible solution is it?
Next
yarn install
will overwrite the changes