Using Image Browser I modified it so each page is a "Gallery"
?php
$pixGallery = '[gallery=1]';
$pixGallery = apply_filters('the_content', $pixGallery );
echo $pixGallery;
if ( function_exists("nggShowImageBrowser") ) {
echo nggShowImageBrowser(1); } ?
This code allowed me to embed the imagebrowser in a page template.
But now if I click on any of the thumbnails it calls this:
?pid=1
Which goes to a page with just the image browser picture, and no longer shows the thumbnails.
How do I show the thumbnails AND the picture on every page? It was working fine before...
Any thoughts?