-
Posts
1,835 -
Joined
-
Last visited
-
Days Won
21
Everything posted by Nico Knoll
-
Nicely done! I didn't even know that you can set "?id="
-
There is a plugin for at least restrict the edits per user. Not sure if you can hide the rest, too: http://modules.processwire.com/modules/page-edit-per-role/ or https://processwire.com/talk/topic/2141-module-page-edit-per-user/ or http://modules.processwire.com/modules/custom-page-roles/ You probably have to read the description of them or try them and then decide which one fits our needs the best.
-
Because it's not that easy for the average user to setup a nodeJS environment, I guess.
-
How do you defined your anchors? Giving subsections ids or some jQuery magic?
-
I would just use the first publish date. Because if you have a blog and order by published you want to have the post stay at the same position
-
Shop-For-Processwire: Send Confirmation Mail With Order Content
Nico Knoll replied to Pascal's topic in Modules/Plugins
$mailbody = $page->render() -
@pete: I think it only stores page ids. Which is as good as a page
-
Just as an idea - couldn't this field be called "published" just to match "created" ? Or is "published" a reserved word?
-
Let's Highlight Processwire's Ability To Be An "enterprise Cms"
Nico Knoll replied to marcus's topic in Pub
Just thinking: Maybe you could even go further and create more then just the business microsite but something like "ProcessWire (features) for Developers", "ProcessWire (features) for Users", "ProcessWire (features) for Business" from which each is a microsite just highlighting the advantages. -
Let's Highlight Processwire's Ability To Be An "enterprise Cms"
Nico Knoll replied to marcus's topic in Pub
I may would go with something like processwire.com/business/ or business.processwire.com or business.pw ((or enterprise.pw or vip.pw) redirecting to processwire.com/business/) which points out why ProcessWire is able to be used as enterprise/business CMS. Maybe also offer Premium Support and so on. Probably I would use a little different design of the page (at least colours). A little bit darker. So it feels more classy. And enterprise people think they are in there own section. Good examples: http://vip.wordpress.com/ https://www.dropbox.com/business/ -
@netcarver: He uses 5.5 so it should be fine...
-
You could use my QuickTags editor. TAB key support is planned.
-
Why not using the "files" field?
-
You can try to reset the admin password: <?php // Reset Password $users->get("admin")->setOutputFormatting(false)->set('pass', 'yo12345')->save();
-
Not sure which of them were already posted here (mostly german): (could someone delete double posted articles from my list?) http://wowa-webdesign.de/allgemein/gastartikel-processwire/ https://www.onli-blogging.de/1320/ProcessWire-taugt.html http://www.techniksurfer.de/vorstellung-des-cms-namens-processwire/ http://fabian-beiner.de/de/artikel/vier-stunden-spass-mit-processwire/ http://www.noupe.com/cms/processwire-cms-with-a-difference-77309.html http://www.sunarlim.com/2013/02/why-choose-processwire-over-wordpress/ http://blog.andrebaldeweg.de/blog/processwire-im-einsatz-586/ http://internetblogger.de/2013/05/cms-processwire-bei-all-inkl-installiert/ http://absoluteb.com/2012/08/processwire-my-new-favorite-cms-in-the-whole-wide-world/ http://adamxp12.com/posts/websites/processwire-cms-review http://benbyford.com/articles/why-i-choose-processwire/
-
I like this post a lot more than the other one on WP-Tavern. But it's sad that every article WordPress <-> ProcessWire quotes CMS Critics "bloated plugins" point. The whole system is bloated.
-
My mistake - corrected it and uploaded it to github. I'm always open for a beer
-
Go into the module file and put the uninstall function into /* */. Then uninstall it. Then go to admin->setup->pages and delete the subpage "delete page".
-
You have to put it in the loop of course: <?php // get the images (if your image field is called "images") $images = $page->images; foreach($images as $image) { echo $image->credits; }
-
"Continuous integration" of Field and Template changes
Nico Knoll replied to mindplay.dk's topic in General Support
Maybe you could even include auto recognition. Like calling the exported file "update.json" and put it into the main dir and the module recognizes it and asks you if you want to use this file for updating. Afterwards it deletes the file. Would be that great! -
Don't understand it completely but you display images descriptions of an image field with multiple images like this: <?php // get the images (if your image field is called "images") $images = $page->images; // do a foreach loop to display each image foreach($images as $image) { // now you can use all of the image's attributes like description echo $image->description; // or the url echo $image->url; }
-
How do you added this extra field? And what is the code you're using in frontend to display it?
-
Didn't even know that there is an inline mode. Could you add this as an issue to GitHub? So I'll keep it in my to-do list rather then forgetting about that I read it here?