Dear robguay and TedPPL,
In all of the bellow mentioned lines you need to replace 20 with the number of images, that you need to display.
1. photo-gallery > admin > views folder, BWGViewGalleries_bwg.php file.
Search the following code:
$i = ($page_number - 1) * 20;
2. photo-gallery > admin > models folder, BWGModelGalleries_bwg.php file. Search get_image_rows_data function, afterwards search the following:
$limit = ((int) $_POST['page_number'] - 1) * 20;
3. photo-gallery > admin > models folder, BWGModelGalleries_bwg.php file, please search:
$row = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "bwg_image "
. $where . " AND gallery_id='" . $gallery_id . "' " . $image_order_by . "
LIMIT " . $limit . ",20");
4. photo-gallery > admin > models folder, BWGModelGalleries_bwg.php file, search image_page_nav function and find the following:
$limit = ((int) $_POST['page_number'] - 1) * 20;
5. photo-gallery > admin > models folder, BWGModelGalleries_bwg.php file, please search:
$page_nav['limit'] = (int) ($limit / 20 + 1);
Please note that all of the changed numbers need to be the same.
Thank you.