Jump to content

Nico Knoll

PW-Moderators
  • Posts

    1,835
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Nico Knoll

  1. Quick hint: already saved snippets.pw and trying to create a blog/snippet collection so you get easier into pw. But it's only a concept at the moment.
  2. @NorbertH: I like your points. And I think you're right with all of them. Especially this part:
  3. I'm really honored that my proof-of-cponcept module inspired you And this one looks really promising. Is it going to be a core module? And does it show a message after login that a new version is available?
  4. Scroll down a little and try the tricks on this page: http://processwire.com/docs/tutorials/troubleshooting-guide/page2
  5. Yeah it's a timed cache. I could implement something like "?modulecacherefresh=1" or something similar - and I think it just shows all modules
  6. Nico Knoll

    PW logo

    @adrian: You're right... forgot to upload it. I think I will spend some time this weekend on finishing processwire.tv
  7. Nico Knoll

    Barcelona

    Montjuïc was my favorite - great view from up there
  8. Nico Knoll

    PW logo

    You're welcome: http://processwire.tv/downloads/
  9. Or do a simple workaround: for ($i=0; $i < count($products); $i++) { // define a placeholder $products->eq($i)->link = $products->eq($i)->url; $products->eq($i)->of(false); $products->eq($i)->random = "hi$i"; // if you want to change the url you can now do it as simple as: $products->eq($i)->link = "url"; var_dump($products->eq($i)->random, $products->eq($i)->link); $products->eq($i)->of(true); } // now go out and use "link" instead of "url"
  10. Merged it. Would be nice if somebody could try it and tell me if it's working again
  11. Got even better If you should need help anytime soon with this project or another ProcessWire related - just drop me a line
  12. Nico Knoll

    Barcelona

    Tanks to all of you so far. It's actually a really amazing trip already: a lot of nice people in my hostel I got to know (espacially this lovely british girl ) and an amazing city! Will post more when I'm back
  13. Nico Knoll

    Barcelona

    Hey, I'm going to Barcelona tomorrow. Any tipps what I should visit? Maybe anyone even living there and wants to meet? Thanks, Nico
  14. No they aren't. Ryan once mentioned that he likes using a "main.php" a lot more but is using "head.inc" and "foot.inc" because a lot of people coming from Wordpress only know this why and understand template making a lot quicker.
  15. WOW! That's one of the coolest thing for ProcessWire I've ever seen!!!!!1 (If possible I would like it a hundred times more)
  16. But doesn't it has to be an autoload module then?
  17. Shouldn't be that hard to implement I guess.
  18. Hey, I would love to have something like $config->defaultTemplateFile in the config.php. What it should do: If set to "true" every template (except admin of course) should use the defined template file instead of its own. If you want to use another file (or the default file like page.php for page) you have to define it as "alternate template filename". Advantage: It's great if you're using a ajax driven site if you don't have to set every template to use e.g. "main.php" or "app.php" or whatever. What do you guys think? -- Nico
  19. Nice! Let's hack all WordPress sites and bring them down. I anyway don't like WordPress.
  20. I tried summernote. But the requirement of bootstrap is really annoying.
  21. Btw.: Fieldsets as fields maybe don't make sense in the backend but it makes a lot of sense if you're writing a module or just using the API for a form.
  22. I like the system how it is now. I just give tabs names like "_sidebar" to distinguish them from normal fields. @ivan: Just create a template called "default" or whatever including all the fields you want to use in all templates. Then - when you create a new one - just select "default" in the field which asks you if you want to copy some fields of another template.
  23. I guess that's somehow a javascript / jQuery thing (404 instead of 403). Maybe it just recognized that the page is not accessible and therefore can not be found. http://stackoverflow.com/questions/17509717/jquery-returns-status-code-404-instead-of-403
×
×
  • Create New...