Jump to content

Recommended Posts

Posted

MultiPage Editor is a module that takes any valid ProcessWire selector and shows you all matching pages. You can edit all fields from one page, thus being perfect for bulk editing things like product pages or lists.


 


It works best when selecting on template, because all pages will have the same fields.


 


How to install:


  1. Download from: https://github.com/weworkweplay/ProcessMultiPageEditor
  2. Place the file ProcessMultiPageEditor.module in your /site/modules/ directory.
  3. In ProcessWire admin, click to 'Modules' and 'Check for new modules'.
  4. Click 'install' next to the 'MultiPage Editor' module (under heading 'Process').

Following that, you'll see a new menu option for this module on your Admin > Setup menu.


Please note that the module currently only shows FieldtypeText-fields. This is something that probably needs some work. 

  • Like 10
  • 5 months later...
Posted

Excuse me, but i don't understand how to change the fields...

I did a search:

template=people, title*=heart

I press the FIND button..

I got 60 pages results..

and now? How can i change a text field called "color" to "red" in only 1 step?

Posted

I don't think this module can do that. But this small script can :)

foreach($pages->find("template=people, title*=heart") as $p){
    $p->of(false);
    $p->color = 'red';
    $p->save("color");
}

EDIT: Actually I don't think this module seems to be working. Does it require some table editing module/script to also be installed?  I see that it requires MarkupAdminEditableTable - problem is that it doesn't seem to be initiating it?

This is all I get:

post-985-0-26822800-1407999402_thumb.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...