I am having a similar issue … except all my short codes are there
http://www.bassegg.com/?page_id=12
Even with all info entered the spinning wheel for the checkout part just keeps spinning and never becomes live.
I found a possible solution but I dont assume it will be a permanent fix.
I went into the manage-gallery.php file and changed
$start = ( $_GET[‘paged’] – 1 ) * 25;
$gallerylist = $nggdb->find_all_galleries(‘gid’, ‘asc’, TRUE, 25, $start);
to:
$start = ( $_GET[‘paged’] – 1 ) * 100;
$gallerylist = $nggdb->find_all_galleries(‘gid’, ‘asc’, TRUE, 100, $start);
Now the manage gallery page will show up to 100 galleries, not efficient if you have alot of image galleries.
I hope someone has a better answer.
yes i created my own theme, im not sure why that would affect it though since it is a backend ordeal. it is rather frustrating.