-
Posts
415 -
Joined
-
Last visited
-
Days Won
2
Everything posted by zoeck
-
the browser doesn't show the css-html changes just made
zoeck replied to franciccio-ITALIANO's topic in Getting Started
Just use the reload Button ? Or… live.js - as written by @pwired -
You know that this is not a wordpress forum? And your answer has nothing to do with the field in question at all.
-
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 ?
-
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 ?
- 66 replies
-
- 2
-
- developing
- working with pw
-
(and 1 more)
Tagged with:
-
Do you mean something like "Fieldset in Tab (Open)" (Class: FieldtypeFieldsetTabOpen)? This is included in the Processwire core ?
-
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; }
-
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)
-
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."
-
Best way to do a fixed count, repeated group of fields?
zoeck replied to cst989's topic in General Support
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 ? -
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 ?
-
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
-
Upgraded Client Website to V3 now FormBuilder will not function
zoeck replied to Tom.'s topic in General Support
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 ? -
I think this is the worst solution for probably a small problem
-
you forgot an s in $pages Wrong: <?php if ($page->get('1025')->FIELD): ?> Right: <?php if ($pages->get('1025')->FIELD): ?>
-
and don't forget to save the value/page! ? $userPage->save(); https://processwire.com/api/ref/page/save/
-
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...
-
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
-
Another small Problem: "Listen To The Voice Of Relief" Two pictures are rounded off - and one is squared...
-
Can you check if the problem occurs with another browser or incognito window as well?
- 5 replies
-
- access
- virtualbox
-
(and 3 more)
Tagged with:
-
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 ?
-
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/
-
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... ?
-
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'); ?>
-
Just write <?php echo $page->body; ?> or the short code ? <?=$page->body?>
-
Line 437: <?php namespace ProcessWire; $content = $page->body;?> Just delete the "namespace ProcessWire" ?