Jump to content

taotoo

Members
  • Posts

    89
  • Joined

  • Days Won

    1

taotoo last won the day on November 11 2025

taotoo had the most liked content!

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

taotoo's Achievements

Full Member

Full Member (4/6)

51

Reputation

  1. I loved this theme - very similar to the new one, but somehow better. I actually prefer Bernhard's stock UIKit theme to the new one, not sure exactly why. I wish Canvas was the default theme.
  2. I like this approach a lot - looking forward to seeing it in action!
  3. Here is what I did - or rather what AI did for me... I don't know if it's better or worse than your code though.
  4. Thank you Robin, as ever you're a star!
  5. This module is so handy. A minor thing, but I find myself not being able to differentiate between fields when selecting them: It would be great if there was an option to show field Names instead of Labels (or show both). Obviously I can rename my fields, but I like to keep them short for the client, and want to avoid the complication of using template overrides.
  6. On Windows 11, Chrome/Firefox/Edge all looking good to me now - consistent animations and the aliasing has gone too.
  7. Further to the above, on Windows the animation is different for me on Chrome vs Firefox [Chrome on left, Firefox* on right] (*The pixelation of the animation is due to it being a gif)
  8. +1 🙂
  9. I'm currently looking at Grav/Kirby/Statamic etc. for certain simple sites where MySql doesn't make sense, but I'd much rather use PW with SQLite.
  10. While I've never encountered that particular error, I have solved other ones by removing empty lines from beneath the closing php tag in my ready.php file.
  11. Thanks for another great module Robin. Just a thought - I wonder if the icons might be inverted, e.g. so that an eye means the page is visible, and an eye with a strike through means it's hidden.
  12. You can use FieldtypeConcat, or do it with a hook. https://processwire.com/modules/fieldtype-concat/ // Merge First and Surname for Title and Name if($page->template == 'some-template') { // Don't change name field if page is going to trash if(!$page->isTrash) { // If the fields that make up the title are populated if($page->first_name && $page->surname) { // Set the title $page->title = "{$page->first_name} {$page->surname}"; // Sanitize the title as a page name $name = $event->wire()->sanitizer->pageName($page->title, true); // Set the page name while making sure it auto-increments if there is a sibling page with the same title $page->name = $pages->names()->uniquePageName($name, $page); } } }
  13. This is the one, thank you!
  14. Not sure if anyone has used this module yet. Example code from the module page (https://processwire.com/blog/posts/page-list-custom-children-module/): template=category >> parent=/blog/posts, categories=page.id I want to insert 'parent', as below, but it doesn't work. I'm hoping someone might know how to do it. template=category >> parent=/blog/posts, categories=parent.page.id
×
×
  • Create New...