
How to AJAX refresh field on change of another in editor?
By
hellomoto, in General Support
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By flydev 👊🏻
Hello,
I would like to present you a new module which aim to facilitate the productivity of your editors/publishers when working on ProcessWire.
The idea begun when my co-worker told me that when typing in ProcessWire CkEditor field he was feeling "loosing motivation" when writing big wall of text and/or inspiration. So he opened his web-browser and show me a site looking to Wordpress - feel free to put your preferred emoji here - then he opened Gutenberg... typed some text and moving some "blocks".
I understood immediately why he got this feeling with CkEditor. If you or your client feel like this guy, then you will love this module !
What is currently supported ?
Features
Auto-save Medias upload support HannaCode support Blocks Implemented
Heading Image Paragraph Embed Quote Code Link Table (beta) Block Delimiter Raw HTML Note (custom block markup) Feature Request
Frontend Edition
And there you go for the preview - sorry I am to lazy and bad at typing text so I had a copy/pasta moment :
Module featured in the ProcessWire Weekly #317 - Thanks @teppo
-
By Pip
Hi Everyone!
I'd like to set a different label on my Title (PageTitle) field in one particular template. Is there a way to do so?
Thanks.
-
By benbyf
Hello, and welcome to what I though was either my client being silly and changing things, or some evil doer. Turns out its reproducible and therefore something in Proceswire (I checked my templates and modules but couldnt find anything that would be doing this...). So what is it doing? Check out the video for evidence.
A repeater field is interacting with a page template and another repeater field somehow to swap the fields in the template and repeater over...
I have a template called team, and a repeater field called team_repeater with label Team. Some how and for some reason, when I change my fields on repeater called main_menu_links my team template gets those fields and when I try and revert the team template fields to the fields it should have, they get given to the repeater main_menu_links. Also this to say HELP!!!!!
video: https://www.dropbox.com/s/exkdhc6n7x0xpsa/strange-repeater-PW-mega-bug.mov?dl=0
-
By DV-JF
Hey all, hope you're feeling well these days!
Short question: Under "Setup > Templates" it's possible to sort the templates by last modified. Is this possible for fields view to?
Long explanation:
Currently I am in the process of programming a reusable template and often have to copy several fields & templates from different PW installations into my "master version".
Therefore it would be good to see already in the field list when the last modification has taken place.
Stay healthy & don't forget to wash you hands - many greets!
-
By Lmwt
Hi forum,
I have this list of fields with labels and I want to skip the displaying of labels for fields left empty (e.g. if field "logo" is not filled with an image, but it could also be text fields). Using count() and "continue" will always output either nothing or all labels.
Is there a way to use the "skipLabel" method in the loop?
foreach ($page->template->fields as $field) { if(!count($page->$field->logo)) {continue;} else { $etikette = $field->getLabel(); //get label in the current user language $content .= " <br><li class='pub-field'>$etikette<br> </li>"; //display labels as li $content .= $page->get($field->name) . "<br>"; // display values as li } } Thanks for your help!
-