-
Posts
37 -
Joined
-
Last visited
Recent Profile Visitors
1,077 profile views
Matze's Achievements

Jr. Member (3/6)
5
Reputation
-
Hi there, does anyone know a module or tutorial about how to create an navigation of a children page list. Example: a listing page has 100 children (blog posts or similar) the listing page should list the children Each listing result page should show 10 Navigation like this: <<PREV 1 2 3 4 5 6 7 8 9 10 >>NEXT I think this is a common thing, but i couldnt find a ready to use solution (maybe i just don't know the right name of it) Thanks, Matze
-
Hi there, I'd like to add some individual tags with classes directly into the edit field under Admin > Setup > Fields > MyCKfield I can't manage the JSON thing. There is this example in Javascript: https://github.com/processwire/processwire/blob/master/site-default/modules/InputfieldCKEditor/mystyles.js CKEDITOR.stylesSet.add( 'mystyles', [ { name: 'Inline Code', element: 'code' }, { name: 'Inline Quotation', element: 'q' }, { name: 'Left Aligned Photo', element: 'img', attributes: { 'class': 'align_left' } }, { name: 'Right Aligned Photo', element: 'img', attributes: { 'class': 'align_right' } }, { name: 'Centered Photo', element: 'img', attributes: { 'class': 'align_center' } }, { name: 'Small', element: 'small' }, { name: 'Deleted Text', element: 'del' }, { name: 'Inserted Text', element: 'ins' }, { name: 'Cited Work', element: 'cite' } ]); I need a "translation" into JSON on how to put this into the "Custom Config Options" field for the same result. Thanks for your help!
-
Hi, for items in repeaters and matrix there is this little on/off switch to temporarily turn them off and on. Are there any options like this for single fields too? Espcaially for fieldset (page)? Or is there maybe a module for this? (couldnt find, but maybe i havent used the right keywords). Of course i could add a checkbox myself and code the exception but maybe there is a more elegant solution for this? Thx!
-
module PrivacyWire - Cookie Management & async external asset loading
Matze replied to joshua's topic in Modules/Plugins
Hi. Is it possible to make it like a window or modal centered in the middle of the page and the background overlayed with a half transparent color? I tried to customize it via CSS but didn’t manage it. Maybe there is an easier solution for this? -
Matze started following Padloper 2: Early Alpha Preview + Roadmap
-
module PrivacyWire - Cookie Management & async external asset loading
Matze replied to joshua's topic in Modules/Plugins
Just wanted to say thank you for this highly needed plugin! Is there a way to donate for it? -
Ok, thanks. Downloading the Module is still possible with the handle "ProcessDatabaseBackups".
-
Hi, if I try to call https://modules.processwire.com/modules/process-database-backups/ i get this error: >> Unable to complete this request due to an error. - Error has been logged. For any other modules i tried it worked. Anyone else?
-
Hi, is there a way to activate the option Input > Visibility > Presentation > "Open when populated + Closed when blank" for a Fieldset (Page) containing some fields like text or textarea? To me it is always open, even if all fields inside are empty. Thx, Matze
-
Yes, that worked! Thank you! 🙏
-
Hi, I'm trying to get the id of a specific, non empty Textarea field, but my code returns an error: // "Formattext01" = name of the textarea (ckeditor) field // code in template: echo $page->Formattext01 // returns the content as expected echo $page->Formattext01->id // Notice: Trying to get property of non-object in /Users/websites/testpage/site/templates/basic-page.php on line 1 I guess i overseen something? but what? thanks for help!
-
Okay, it's "Textareas" - found it, sorry … (how can i delete a post?)
-
Hi there, i need around 20 simple text fields in a template, same properties for all, except the "label" (or title to use it in code). Something like this: painter: _____________ period: _____________ canvas material: _____________ painting technique: _____________ etc is there a way to avoid building 20 single fields? I use pro fields too, but cant see any solution e.g. with Multiplier or table. Thank you Matthias
-
Thanks a lot!
-
Hi there, maybe i just missed it, but - while I'm editing a page, is there … a way to quickly jump to the template of the page to edit it? … a way to quickly jump to a field (when superadmin there is a hover about which field is currently used, but no linking or options with this, so i have to go over the menu, looking for the right field.) Thanks.
-
Thank you all for your inspiration! I'll try them all. Seems that Soma's solution will make it. Not sure what "Enter the names of any image fields (separated by a space) that you do not want to allow for selection with this module." exactly means, but a quick test hides them from the CKEditor selection. (hopefully not restricting any other functions of the field)