Jump to content

tpr

Members
  • Posts

    2,321
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by tpr

  1. That's why I asked if you set (overwrite) language manually somewhere. Anyway, glad you solved.
  2. Haha, same feelings here with another template engine. Once you get the hang of it there's no way back
  3. v009 comes with a small feature update: ctrl+click on a language tab will activate all the language tabs of the same language. This is great for switching the current admin page fields to another language, eg. for checking contents of multiple fields at once.
  4. You shouldn't set it manually unless you need a content from a non-current language. I asked if you do set is because if you did your site could show content from other languages. The language switcher seems OK if it changes the URL. How do you try to echo the content? (where it fails to show the correct language)
  5. v008 is committed to GitHub and it enables showing the Save dropdown menu on hover instead of on click. The only way I found to achieve this is adding a CSS class to the dropwdown which seems to work fine with the exception of Module config pages. Anyway, it covers 99% of the usage scenarios I think. More agressive modifications were dropped because the markup wasn't generated the way I initially thought and it would be hard to solve.
  6. v007 is up, with a Reno tweak that removes perhaps the biggest frustration the sidebar causes - the inability to single-click on the header links to navigate. The module is featured in PW Weekly Nr 107, thanks! So true, there's a lot of things awaiting to be fixed
  7. v006 is up - there are some new Reno theme tweaks plus LoadCollapsedModuleInfos. This auto-collapses module info fields on module configuration pages, saving space.
  8. Do you set $user->language somewhere in your code? Maybe we could help more seeing your template code.
  9. Check the latest commit (v004). There are other fixes as well for the admin themes, eg. do not apply some changes to modal contents, plus only add body classes to the proper admin themes. This would be surely possible but I need some time to fully understand it At first I'll concentrate on the "basics".
  10. v003 is uploaded with some "before-the-weekend" Reno theme updates: Make header sticky: stick the header to the top of the browser window so it stays in place when scrolling down Make sidebar sticky: stick the sidebar to the top to make it always visible Auto hide sidebar on left: auto hide the sidebar so it's accessible by moving the mouse to the left side of the screen Always show sidebar items (disable accordion): make sidebar submenus more compact and do not hide them Place header button next to the main title: moves the top (cloned) main button next to the title to make it easier to reach Move notice close buttons to the left: put the close button of the notice message to the left for easier access
  11. I would prefer these extra buttons always visible. Waiting for the hover will cause frustration sooner or later Perhaps adding them below the main button?
  12. Movie time! These are two tweaks: always visible sidebar items and fixed header/sidebar. There are still some details to polish but seems useful.
  13. Giving admin theme corrections a second thought I support the idea. I have a few other fixes in my mind besides your suggestions so stay tuned.
  14. That's something I've already thought of but the way I tried to make it work failed and there were other things to do I'm not sure this module is the best place to make admin theme corrections, but for a temporary solution it could do.
  15. Here it is: https://processwire.com/talk/topic/13389-adminonsteroids/
  16. AdminOnSteroids Various admin tweaks to enhance ProcessWire admin. http://modules.processwire.com/modules/admin-on-steroids/ https://github.com/rolandtoth/AdminOnSteroids
  17. Haha not that fast This was already at hand (partly).
  18. Add this to /site/ready.php: <?php namespace ProcessWire; // modify longclick duration $page->addHookAfter('render', function ($event) { if ($this->page->template != 'admin') return; $js = <<< HTML <script> $(document).ready(function () { if (jQuery && jQuery.longclick) { jQuery.longclick.duration = 2000; } }); </script> HTML; $event->return = str_replace('</body>', $js . PHP_EOL . '</body>', $event->return); });
  19. You need to set jQuery.longclick.duration to override the default value: jQuery.longclick.duration = 2000 I'm working on a module that adds JS tweaks to the admin, including some tiny modules/snippets created by me & netcarver, and this now includes this tweak too. Sneak preview: As you can see there's room for other tweaks so if you have something to add, please tell.
  20. Nice! Have you considered adding microformats somehow (eg spans)?
  21. tpr

    Fiberprofil

    Yes, "corporate" is a better term. Seems like you had great time developing this site, congrats!
  22. tpr

    Fiberprofil

    Nice work! I prefer more "graphical" designs though but it's not always us who decides I'm also using ProFields Table and it's really great. On this site (still VIP) I used it for GDA tables, where I also use a Page field for assigning for rice types, as many have the same GDA table. Could have saved an hour or two if I had recognized that earlier
  23. Great ideas, but I'm not sure Tracy Debugger is the best place to add them. Perhaps it would deserve a new module. @adrian - Have a nice journey!
  24. Yes I do, using this mixin for Grid (and no CSS framework at all): https://ajy.co/the-simplest-sass-flexbox-grid-ever
×
×
  • Create New...