Jump to content

zoeck

Members
  • Posts

    382
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. inside a selector you have to use a timestamp ? Just use strtotime without date(), i think it should work ? <?php $today = strtotime('tomorrow'); $pages->find("template=page, sort=datetime, datetime<=$tomorrow");
  2. Hello, yes, it's called ImportPagesCSV: https://processwire.com/modules/import-pages-csv/
  3. There is a relatively new official solution ? https://processwire.com/blog/posts/language-field-export-import/
  4. There's also a paid pro module "FormBuilder": https://processwire.com/store/form-builder/
  5. When I have a good example ? But it is significantly less code You mean {var $site->color = 'blue'} ? I forgot the var yesterday and wondered why it does not work ? Thanks for the infos!
  6. I am currently reworking some old templates, and there's some PHP code in it ? I was just surprised that the php code is not executed... But I initially thought I did something wrong ?
  7. I want to use RockFrontend and Latte in my first "real" Project, but now I have a question about RockFrontend/Latte: If I use $rockfrontend->render() with a .latte file, is it no longer possible to use "normal" PHP inside of the .latte file?
  8. There's no "ready to use" export function in processwire, but you can easily create one like described in the posts of AndZyk. But I think you have not understood how Processwire works ? a simple introduction can be found here https://processwire.com/docs/tutorials/hello-worlds/ The important thing is that you understand that the export must be programmed by you via php. The module "BatchChildEditor" simplifies the whole thing only a little. In the module description there is also a simple example: https://processwire.com/modules/batch-child-editor/ But you need an understanding of how PW is structured (Everything is a page, every page has a template, every template has fields, every field has a certain type).
  9. I think the statusChanged hook is the right one for this ? (or statusChangeReady) Then check if the status is changed to hidden...
  10. Do the child pages also have the custom page class? So in your example the template "overview"? Because the child pages are pages of their own.
  11. Okay here we go ? "$grandparent" is NULL... checked it with a bd() And here's the Screenshot:
  12. Thanks @bernhard, the path Problem is fixed, but the repeater error message remains. I dont know how to debug this error, i only know that the error only appears when RockMigrations is installed.
  13. @bernhard This is the function in the module file: <?php /** * Get changed watchfiles * @return array */ public function getChangedFiles() { $changed = []; foreach ($this->watchlist as $file) { // remove the hash from file path // hashes are needed for multiple callbacks living on the same file $path = explode(":", $file->path)[0]; $m = filemtime($path); /////////// LINE 1282 if ($m > $this->lastrun) { $changed[] = $file->path; $file->changed = true; } } return $changed; } It's this Line: $path = explode(":", $file->path)[0]; Explode the Path -> it's just C (should be "'C:/apache2/htdocs/site/migrate.php'") When i remove the explode the "C" Error is gone, but the repeater error remains.
  14. I have a problem with the latest version. When I use the shortcuts with external links, I always get the following error: I think the check doesn't fit that way (line 226): if (!$page || !$page->url) { Because if "$page" does not exist, then "$page->url" will cause an error. Also added an issue on github ?https://github.com/daun/processwire-dashboard/issues/41 /edit: the new version 1.5.2 fixed this bug ? thanks!
  15. I tried an update from v1 to v2 today But now Tracy shows me these errors on every page ? (including admin) When I uninstall the module, the error is gone again. Im using the current PW master version (3.0.200)
  16. Woah... i love the MagicPages Feature ? (and also all the rest ?) I'm still using v1 of RockMigrations, but i think it's time to switch to the new version ? Thanks for the great video bernhard!
  17. Really? I think the api search function is good ? Just search for „save field value“ and the First result is setAndSave… https://processwire.com/search/?q=save+field+value&t=API https://processwire.com/api/ref/page/set-and-save/
  18. Just install the less Module ? https://processwire.com/modules/less/
  19. Just delete the php file? FTP, Explorer, Finder, SSH, … there are many options ?
  20. Another German Processwire „Review“ “When web development has to be quick“: https://www.golem.de/news/processwire-wenn-webentwicklung-schnell-gehen-muss-2209-167784.html
  21. I had problems with the latest RockFrontend version also under laragon/Windows. But could not analyze it yet exactly what it is (Corona, vacation, etc. ? ). But the topic paths has always been a problem under Windows ? @bernhard But on my Mac it works without problems under DDEV.
  22. Just add a <a> href tag to your icon? https://www.w3schools.com/tags/att_a_href.asp Or change the href="#" to something like href="https://instragram.com/youraccount"
  23. Looks like your $login_date variable is wrong. Line 499 date_create($login_date) returns false (date_create: "Procedural style returns false on failure.") That's why you can't use format on $date_diff ?
  24. Do you just mean a link to a social media account? Or do you want to link to a related post from a social media platform? If it should be only a link to the account, you can simply use such icons: https://www.w3schools.com/howto/howto_css_social_media_buttons.asp And then you create a URL field ("InputfieldURL") in Processwire and put your social media link there. (Can also be an extra social media page that only contains the links)
×
×
  • Create New...