Jump to content

zoeck

Members
  • Posts

    442
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. Do you have an older version of Tracy Debugger installed? If yes, try to switch off Tracy or update Tracy to the latest version (4.23.25).
  2. Just use the reload Button ? Or… live.js - as written by @pwired
  3. You know that this is not a wordpress forum? And your answer has nothing to do with the field in question at all.
  4. Hello Seba, yes, this is possible. I have connected the login to our domain controller via LDAP and the control of the authorisations runs via corresponding groups. (Customized Version of this Module: https://github.com/conclurer/LdapSignIn ) in general, its just a normal website with access protection ?
  5. That's exactly what I always think. It already bugs me with Docker Compose and also with other tools. But your recorder looks really cool ?
  6. Do you mean something like "Fieldset in Tab (Open)" (Class: FieldtypeFieldsetTabOpen)? This is included in the Processwire core ?
  7. You can also combine corresponding classes, for this purpose there is the "@apply" function. This makes it possible to keep the code relatively clean ? Example vom the Tailwind Docs: .btn { @apply px-4 py-2 rounded font-semibold bg-gray-200 text-black; }
  8. You can set your own path to your data directory ? https://processwire.com/api/ref/paths/ or you can use the root directory: $urls->root Site root: / (or subdirectory if site not at domain root)
  9. You can use RockMigrations for such tasks ? It's a very Powerful Module Or just look at the docs ? https://processwire.com/api/ref/page/delete/ // Delete a page and recursively all of its children, grandchildren, etc. $item = $pages->get('/some-page/'); $item->delete(true); It looks like the "true" is missing: $item->delete(true); "If set to true, then this will attempt to delete all children too."
  10. Do you know the "Combo" ProField? https://processwire.com/store/pro-fields/combo/ I'm not sure, but I think this might be just the right thing for you ?
  11. I've been using Bootstrap 4 all the time, but I didn't want to take the step to version 5. I'm making my first, successful steps with Tailwind and I'm currently very satisfied. But you have to learn a lot of new things, because it's still a bit more complicated than Bootstrap, but you also have a lot more freedom. I also use Htmx and Alpine.JS with TailwindCSS ? many nice new things ?
  12. There’s the file field in the core… you can use this field for such tasks. and then there’s the paid module „form builder“ - you can easily create a form and send it via email (+attachment)… The function exists, you just have to use it
  13. You can contact Ryan and renew the licence for Formbuilder. I think that should cost about $39. I think that would be the easiest way to get an updated version ? And there is also 1 year support ?
  14. I think this is the worst solution for probably a small problem
  15. you forgot an s in $pages Wrong: <?php if ($page->get('1025')->FIELD): ?> Right: <?php if ($pages->get('1025')->FIELD): ?>
  16. and don't forget to save the value/page! ? $userPage->save(); https://processwire.com/api/ref/page/save/
  17. I think that would be really cool ? In my opinion, the page overview should be revised. The edit, move etc. buttons should always be displayed. Buttons should always be displayed. So you can call the function faster. Possibly a table view would be nicer here...
  18. You only changed the image, wouldn't it make more sense to use CSS to create round images? https://www.w3schools.com/howto/howto_css_rounded_images.asp
  19. Another small Problem: "Listen To The Voice Of Relief" Two pictures are rounded off - and one is squared...
  20. Can you check if the problem occurs with another browser or incognito window as well?
  21. I think here are some different possibilities: You create a template + page You use the same template/page where your form is (And check it with the $input API) Create a template / page for different functions (for multiple pages) - Here you have to use the $input API to decide what to do Depending on how complex everything is, you have to decide how you want to use it ?
  22. It's already possible to list commercial modules ? For example Padloper: https://modules.processwire.com/modules/pad-loper/ Or dynamic selects: https://modules.processwire.com/modules/process-dynamic-selects/
  23. I have a problem with the module. On a page with 3 languages, the sitemap displays only the default language. The site works without problems, I can switch the languages: domain.ext/ (german) domain.ext/en/ (english) domain.ext/fr/ (french) Is there something else that needs to be set so that the other languages are also displayed? Oh, i found my problem... i still had the old sitemap module installed... ?
  24. Just use the field or Selector ? https://processwire.com/docs/selectors/#or-selectors2 <?php $events = $pages->find('template=calendar-post, Start_date|End_date>=today, sort=Start_date, limit=10'); ?>
  25. Just write <?php echo $page->body; ?> or the short code ? <?=$page->body?>
×
×
  • Create New...