-
Posts
11,263 -
Joined
-
Last visited
-
Days Won
374
Everything posted by adrian
-
Absolutely possible and no problems! One thing you might want to check out is Soma's Soft Lock: http://modules.processwire.com/modules/page-edit-soft-lock/ This warns (or optionally prevents) users from editing the same page at the same time which could otherwise result in data loss. EDIT: You might have issues with multiple superusers changing field/template config settings.
-
Installation Error: Fail:Filter functions (filter_var) Fail:TYPE support
adrian replied to loquan's topic in Getting Started
Hi Ioquan and welcome to PW! I am really surprised to see those failures as they should both be on by default in your version of PHP. Is it a default MAMP installation? Can you perhaps check your phpinfo results to figure out if it is in fact not available, or if it is a detection problem with PW. Let us know if you need help getting that info. -
Thinking about a Like/Recommend button module
adrian replied to landitus's topic in Module/Plugin Development
Maybe I shouldn't be stealing your thunder Ryan, but just in case someone finds this post and is wondering the status of your module: https://processwire.com/talk/store/product/11-likes-fieldtype/ -
Search multilingual Page titles in backend, and PageAutocomplete
adrian replied to joe_g's topic in Multi-Language Support
I am no multilanguage expert, but perhaps this helps: https://processwire.com/talk/topic/1228-search-in-multilanguage-site-with-multilang-fields/ If not, at least this post will bump your question and someone more knowledgable will chime in. -
No offense intended to Khan, but in its current state, that module has several bugs. It also has a lot more than most people/sites need. I would recommend building your own using these posts as help: http://processwire.com/talk/topic/1716-integrating-a-member-visitor-login-form/ http://processwire.com/talk/topic/107-custom-login/ http://processwire.com/talk/topic/2937-creating-a-front-end-admin/
-
Output description of file field in a repeater
adrian replied to Thomas108's topic in Getting Started
kongondo's approach looks to be right to me, but remember that if your file field can handle more than one file, you'll need to specify which file, eg: $mp3->file->first->description or instead of first you can use: last, or eq(n) Or you could set the file field max files to "1" in the field's config settings. -
Sounds like a great module - it has been talked about here a few times: https://processwire.com/talk/topic/2700-new-pw-project-notification-and-approving-page-changes/ I think what you are looking for is: $this->message("Revision saved. Waiting for publisher confirmation."); There is also ->error and maybe ->warning (not sure on this last one)
-
Module HelperFieldLinks - field and template edit shortcuts
adrian replied to Soma's topic in Modules/Plugins
I just updated an install to 2.4.7 and the field links are still working here. -
Great to hear Now I just need to hear from @tobaco that everything is working for him with him and I'll be a happy camper - literally - I am heading camping for the rest of the week, but I'll follow up with any other issues here when I get back.
-
Nice! How about an option for tabs vs accordion, and maybe the ability to switch from tabs to accordion automatically on phone sized devices?
-
Sorry Ronnie, I have tested more thoroughly this time and the latest version of Migrator should fix the issue. Thanks again for letting me know how it goes.
-
I think this was fixed here: https://github.com/pine3ree/ProcessWire/commit/8cc1bcccaaf717871a7173b7cbc3fe2e8552afc7 and discussion here: https://github.com/ryancramerdesign/ProcessWire/issues/547 So please try the latest dev and see if it works for you now
-
Yep - you need to use: $article->featured_image->first->url; Have a thorough read through this: http://processwire.com/api/fieldtypes/images/
-
Hey teppo - nice! I know this is just a rough start, but here are some quick observations. The fullscreen mode sits below PW tabs The insert link functionality doesn't have a target option, but I guess this dialog would be replaced a PW specific one anyway, like with Tiny and CK I'd like to see a formatter for code view - I don't know if Trumbowyg has an available plugin or not What about paste as text or from Word buttons - are they available? Otherwise, it looks pretty nice and clean.
-
-
I'll post the same answer I posted in response to your Lister thread issue, just in case someone else is confused. "Ah - I guess you must have upgraded a 2.4 stable installation to dev - that is why Lister wasn't installed by default !"
-
Ah - I guess you must have upgraded a 2.4 stable installation to dev - that is why Lister wasn't installed by default !
-
I can't understand how $article->featured_image->url could possibly give /post/July/postname. Image paths in processwire look like: /site/assets/files/1001/ Maybe I am just being slow this morning and someone else will see what is going on
-
I am guessing you are logged in as a non-superuser? If so, then you need to give your role "page-lister" permissions.
-
Did you see the edit to my last post? If you don't want to run PW dev, or wait for 2.5 to be released, there is another option than Lister - you can use this excellent module from Soma: http://modules.processwire.com/modules/page-list-image-label/
-
What you see in the lister video is a very early version of lister before Ryan split it into Lister and Lister Pro. Unfortunately you will need to wait for Lister Pro to be released if you want to be able to create those custom lister items in the admin interface, but the use of lister in Pages > Find is very powerful already and you can instruct your users how to easily add a new filter that limits the view to a particular parent.
-
Oh I think I understand - do you want the user's image to show up when viewing the User list through the admin panel - Access > Users ? EDIT: If you're running the dev version of PW, that is really easy to do now that the Users page uses Lister - just choose the image field from the columns tab. Like this: Is this what you are looking to do?
-
I think horst's post has your answer - please show us the code you are trying and the result you are getting.
-
Yup - it's installed by default - it is used to display users (Access > Users) and also Pages > Find. With the standard version of Lister you can't add custom views - that requires Lister Pro, which hasn't been released yet, but should be available when PW 2.5 is released which should be too far away.