• Ok, recently upgraded to 1.1.0 from 0.9 something…running WP 2.7.1

    …and in the old version all images where visible on one page when I edited the galleries, to set watermark etc. Now the gallery shows 50 images per page, so for every set of 50 images I need to re apply the action I want and then go to page 2 and redo it again, and so on. Quit boring if I got 300-400 images in a gallery!

    Is there anyway to apply an action to ALL images in one gallery even though they are spread out over several pages in the edit gallery view?

    Am I just overseeing some setting or something here or what?

    Thankfull for any help or pointers! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter andreash-1

    (@andreash-1)

    No one?

    Thread Starter andreash-1

    (@andreash-1)

    Common guys…

    I cant be the only one that find this annoying…

    …or am I just the only one thick enough to miss how to do it!? ??

    Thread Starter andreash-1

    (@andreash-1)

    Ok, so, as no one else seems to be bothered about this, or can tell me what I’m missing!? ?? …I solved it like this…

    Edited ‘admin/manage-images.php’ in the nextgen pluginfolder, row 45 & 48

    // look for pagination
    if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
    $_GET['paged'] = 1;
    
    $start = ( $_GET['paged'] - 1 ) * 50;
    
    // get picture values
    $picturelist = $nggdb->get_gallery($act_gid, $ngg->options['galSort'], $ngg->options['galSortDir'], false, 50, $start );

    And just changed the amount of images displayed to 500. All seems to be working fine, except a noticeable slowdown for the edit gallery page, but that was kinda expected.

    Anyone see any problems with this hack?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: NextGEN Gallery] Can only edit 50 images at the time!?’ is closed to new replies.