Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/28/2025 in Posts

  1. Thanks Ivan 🙂 Have just released version 0.0.3 which 🤞is good to go. Available at https://github.com/clipmagic/LoginPassKey/tree/main This latest version also adds support for AppApi as well as passkey login for admin and LoginRegisterPro Will definitely add some screenshots/videos. In the meantime... Logging into admin: Logging in with LoginRegisterPro on the frontend: and when a user passkey login fails:
    2 points
  2. Seems to be a great module, @psy. Just maybe a video or some screenshots could make it easier to understand what exactly it does without installing?
    2 points
  3. Learn more in the README.md on the GitHub page at https://github.com/clipmagic/LoginPassKey Version 0.0.2Beta released on GitHub. This version is more stable delivers tighter security supports LoginRegisterPro Stay tuned 🙂
    1 point
  4. AdminStyleRock Easily style your ProcessWire backend with two simple settings: Or via RockMigrations: $rm->installModule("AdminStyleRock", [ 'rockprimary' => '#0069B4', 'logo' => '/site/templates/img/kollar.svg', ]); ----------- Background: As of PW 3.0.179 we have a new style in AdminThemeUikit called "rock" style. This thread is here to report issues or ideas for improvement. The goal of the rock style is to make it as easy as possible to adapt your backend to the CI of your client. That's why it uses only ONE single main color and keeps all other design elements in a neutral grey. Download & Docs: https://github.com/baumrock/AdminStyleRock Here is an example screenshot using default uikit colors and a custom base font:
    1 point
  5. Thank you @Stefanowitsch I didn't know there was documentation existing for this! I knew there had to be something I was missing. I know RockDevTools is running now because I see the sse request in the browser console. but it gets a 404. any ideas the next place i can look at? @bernhard, it may be helpful for others who find your module in the Modules Directory if there was a more direct reference to the docs on baumrock.com? Right now, the RockDevTools Module page just says "see docs folder", at which point I just think to go to github and look at the docs folder, which also has no reference to the baumrock documentation.
    1 point
  6. Live Reload should be enabled by default, if you activate rockdevtools in the config file. That's basically all you need to do. It can be customized, too: https://www.baumrock.com/en/processwire/modules/rockdevtools/docs/livereload/
    1 point
  7. I think the docs are generated with a custom module: https://processwire.com/blog/posts/processwire-3.0.41-and-a-look-at-api-explorer/
    1 point
  8. I'm not sure what the technical reason is for the 404 not being handled from ready.php, but as a workaround you could set a custom property on the $page object to indicate that a 404 should be thrown and then throw the 404 later, e.g. from a template file or from _main.php. // Your conditional in ready.php if($foo === 'bar') $page->throw404 = true; // In template file or _main.php if($page->throw404) wire404();
    1 point
  9. This is something I used in a couple of modules recently and it could be useful as a standalone hook. It adds classes to the body tag in the admin theme for: roles the user has if the user is a non-superuser the user's name You could use this if you want to tweak the admin interface for a role using CSS/JS (e.g. with Admin Custom Files). There is also an old wishlist item requesting this. $this->addHookAfter('AdminTheme::getExtraMarkup', function($event) { $theme = $event->object; $user = $this->user; foreach($user->roles as $role) { $theme->addBodyClass("role-{$role->name}"); } if(!$user->isSuperuser()) $theme->addBodyClass("role-nonsuperuser"); $theme->addBodyClass("user-{$user->name}"); });
    1 point
  10. Don't think this made it into the default admin theme, so +1 for this.
    1 point
  11. I'm happy to add this to the default admin theme too.
    1 point
×
×
  • Create New...