Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author afzal_du

    (@afzal_du)

    There’s a pagination parameter which is set to 18 by default. Change the value to change the pagination breakpoint.
    If you set the value to greater than total number of images then all images should come in one page.

    for reversing you should find the following code in 2 places (forgot the file name so do a multi-file search)

    code to find:
    return $images;

    change it to:
    $images = array_reverse($images); // insert this line before return
    return $images;

    Thread Starter mynameisjimi

    (@mynameisjimi)

    For reversing: (for future reference)

    replace

    return $images;

    in the srizon-fb-album-front.php file (line 196 in version 1.2.3)

    with

    $images = array_reverse($images); // insert this line before return
    return $images;

    For Pagination:

    Fixed in the dashboard, sorry I didn’t see that before.

    Again, for future reference, this is a parameter in the dashboard when you edit an album, in the same box where you choose the thumbnail size, shadow color, etc.

    Thanks for the quick response!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Album Pagination and Album Order’ is closed to new replies.