Jump to content

tpr

Members
  • Posts

    2,321
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by tpr

  1. Thanks, these make sense. Another feature request (from the client) is to be able to reset multiple or all jumplinks' hit counters. Currently there are only a few but this sounds handy, eg when going live and would like to start with a clean slate. Looking forward to v2!
  2. Just voted this module up, great work! I used this for the first time, a client needed simple redirects and the cPanel solution didn't work well. The module worked like a charm, thanks! Having a built-in role was also nice to see. At first sight I feel that two simple additions would make the module smarter from the UI side: Enable/disable checkbox for individual jumplinks: this would make easier disable items without having to delete them Preview link for jumplinks - perhaps to open them in a modal window, or panel in PW3?
  3. How about removing starting and ending UL's from the function and add it manually with the homepage link, like this (browser code!): $menu = '<ul>' . '<li><a href="' . {$rootPage->url} .'">' . {$rootPage->title} . '</a> . '</li>' . treeMenu() . '</ul>';
  4. Just to make sure: is this also happening with JavaScript turned off? Eg. looking into the source code in browser.
  5. tpr

    Aligator

    Apparently the child has a higher z-index
  6. v018 is uploaded with the latest Latte version (2.4.0). There's an official way to set the default layout file so previous workarounds were removed.
  7. No, I just picked one from the past releases. I've sent you the screenshot in PM. Edit: the last working one is this: https://github.com/adrianbj/TracyDebugger/tree/144abecbee3e081de99052671c00f392106c6ae7 Edit2: there may be something with this line, commenting out removes the error: if($this->setMaxAllowedPacket()) $this->session->redirect('./');
  8. I'm getting these messages on saving the module (PW 3.023): Deleted field "seo_tab" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_title" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_description" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_keywords" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_canonical" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_custom" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_image" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_robots" data in 0 row(s) from 0 page(s). [page-by-page] Deleted field "seo_tab_END" data in 0 row(s) from 0 page(s). [page-by-page] Saved Module - MarkupSEO (author, sitename, imageSmart, titleFormat) Fields are removed from allowed templates. If I manually add them back, they are gone on next save. No idea what's going on here. I completely uninstalled the module, deleted the seo-fields, but no success.
  9. I installed the latest version but always got a TracyDebugger class not found error. However, an earlier version works fine, eg. https://github.com/adrianbj/TracyDebugger/tree/2fbc6537099a3f90b549fcbfc219417949747952 I updated the module through the Upgrades module, but I got the same error on manual install. Things gone bad when I installed the Process Tracy Console I believe, but not sure. I tried entirely uninstall the module and reinstall, but no joy.
  10. Updated to v025, here are the latest changes: 0.2.5 (2016-06-28) new RenoTweak: miniScrollbar for main content and sidebar (using perfect-scrollbar.js) added Language Translator page to the supported hotkey save pages 0.2.4 (2016-06-26) remove ctrl+click feature to activate all language tabs of the same language (core feature from ProcessWire 3.023) FireFox fix for clearing filterbox miniScrollbar in action:
  11. I wonder whether the or-groups could help in this case: https://processwire.com/api/selectors/#or-groups
  12. Old topic update: here's a plain JavaScript version of the module JS for those who don't use jQuery: https://github.com/rolandtoth/EmailObfuscator/blob/master/EmailObfuscator.js
  13. Version 0.2.3 is uploaded, and it's also available from the Modules Directory: http://modules.processwire.com/modules/admin-on-steroids/ new submodule NoAnims: disable all admin animations (CSS & JS) fix for module repository update showing "Requires 0.0.0 >= 0" (reported by matjazp) CSS fixes
  14. Very nice updates! I wish you worked more on mutilanguage sites to get such great improvements
  15. I may, but I still see no benefits over less/sass/postcss etc. On saving included scss/less/etc files, or the main file, the final CSS gets compiled automatically, no need to do anything.
  16. I would add markup cache to the stack, with 0 timeout for superusers, and a few minutes for regular users. But I'm fine with my current scss/gulp workflow, using includes. Imho it's more maintainable and scalable too, but requires a dev environment to work.
  17. Clear code is often half success
  18. tpr

    Anyone using a Fitbit?

    I never liked such equipments. When I do sports I do it for my pleasure. I run about 20-30 km per week, which is only a fraction I did a few years ago when I run marathons (PB is 2:51). Obviously I'm much slower nowadays but I don't care, I put some good music on and let it go. I also swim two times a week, which is pure nostalgia because swimming is my #1 sport from my childhood. I enjoy taking over others in the pool in breaststroke, that was my preferred style back then. In short, I've tried a few equipments but the killed the show for me, even using a stopwatch is often too much for a hobbyist imho. Of course this may not be the case for others, many of my sportsmates wore them and they liked them.
  19. It should be <img src="<?php echo $config->urls->templates; ?>images/b1.jpeg"> Also check if the image is really jpeg and not jpg. But normally you should create an Image field, add to your template, and echo from there. <img src="<?php echo $page->image_field; ?>"/> You may need to append ->first() and resize methods, search for "processwire images" on google.
  20. Another commit today containing the new Hotkeys submodule. This enables saving page on ctrl+s, even from within CKEditor. What's more, it works on various page types, eg. when editing templates, fields, roles, etc. As there was no general rule I could apply to save pages, I had to manually add the enabled ones, so if you find a page type which doesn't work but should, please report. If enabled, the submodule will disable the default browser Save dialog on all admin pages. I think that dialog has no function in the admin but correct me if I'm wrong. On save there's a white overlay with a fancy css3 animated floppy icon, to indicate something's happening:
  21. Thanks! Glad to hear that. I also use it on my sites and it speeds up navigation and feels better, but of course that can be because it's tailored to my likings. What submodules are you using? I've also thought about adding edit links to fields/templates like HelperFieldLinks do, but without the info popup. v021 is uploaded to GitHub: sticky admin tabs when compact sticky header is enabled stickyCKEditorToolbar fix for multilanguage fields module submitted to modules directory CSS fixes The tabs are sticked to the header so when the site is scrolled down they are still visible, no need to scroll up.
  22. After the update the forum is much slower here on mobile, but maybe my phone is slow. I hope the conversion is still running so that's why its slower. What bugs me more is that headlines link to first post and not to the last. Is there a setting to change this? Clicking the last comment date links there but it's inconvenient.
  23. I'll think about if the config setting is necessary, maybe others could drop in their thoughts on this. Did you read the last sentence in my previous post? Just edited the post while you replied.
  24. Thanks! As for js/css comments: silly me, they are stripped on minification My source files are one dir up from /site dir, maybe that's why their comments are not showing up? But there was an umninified Js file whose comment was shown before the update (baguetteBox.js), and it's in site/scripts folder.
  25. Thanks, it's much readable this way. Some quick tests for comments: PHP: OK ("//") Latte: aren't shown ("{*todo this is Latte comment*}") JavaScript: ("//"): seems not picked up CSS: nope ("/*todo what is this?*/") SCSS: nope ("//todo what is this?") Maybe the panel title could be more readable by removing the brackets. Also there's no space between the words now: "ToDo(0/3)". My suggestion would look like "ToDo 0/3"
×
×
  • Create New...