Ryan Cramer
Ryan Cramer
@michaellenaghan Thanks, I've pushed your suggested fix for this.
@michaellenaghan Thanks, I can duplicate that one with the page-publish permission installed. I think this in Lister may be a unique case so adding unpublished status to the test page...
@JanRomero @teppokoivula The way I do it is this in my /site/templates/_init.php file: ~~~~~ if($user->isGuest()) die("Public access disabled"); ~~~~~ or this ~~~~~ if($user->isGuest()) return $this->halt("Pubic access disabled"); ~~~~~ Another simple...
@teppokoivula It sounds like your use case might be entirely different from what I'm thinking. The times I've needed this were to launch a new site that I didn't want...
Thanks @elabx I've pushed a fix for this
@elabx Since TinyMCE has the word count built in, is there any reason to use the InputfieldTextLength version? The InputfieldTextLength is really more intended for plain text fields rather than...
@jefhar You'd want to put quotes around the email address, i.e. ~~~~~ $user = $users->get('email="' . $email . '"'); ~~~~~ But if you don't want to have to consider it,...
@trk That error means that you've selected a page that is not supported by the rules you've configured. For autocomplete, you'll either want to remove the "parent" setting, or make...
@trk That's because PageListSelect (and PageListSelectMultiple) use a tree selection with hierarchy, so the parent_id refers to to the root of the branch that you want to make pages selectable...
@BernhardBaumrock Looking in the ProcessWireUpgrade module I can see that there is space there, so not sure why it's not appearing in your screenshot. Does it appear related to the...