-
Content Count
163 -
Joined
-
Last visited
-
Days Won
1
zoeck last won the day on January 22 2018
zoeck had the most liked content!
Community Reputation
126 ExcellentAbout zoeck
-
Rank
Sr. Member
- Birthday June 12
Profile Information
-
Gender
Male
-
Location
Bavaria, Germany
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
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... 😄
-
zoeck changed their profile photo
-
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" 😉
-
This makes no sense... if($today == $start AND $today == $start) This is redundant, it is simply 2x the same check Use this: if($today == $start)
-
+1 for Laragon 😉
-
That's it, thank you very much! 🙂
-
I have a problem with the new version, each time I open the dashboard, I get 2 messages: If the message is closed, it will be displayed again the next time the dashboard is opened.
-
RockMigrations - Easy migrations from dev/staging to live server
zoeck replied to bernhard's topic in Modules/Plugins
Thanks @bernhard 🙂 nice Update!