Hello,
I know there is quite a few threads and resources on this subject matter but the trend I am finding for the little extra modification of getting the custom theme to work is no one is posting the solution after they get it working, the replies end with "I got it to work thanks" not "I got it to work and this is how...". So I apologize for bringing this up again.
Basically what I am looking to do is use NextGen Gallery, and WordPress custom field functionality. I just want to enter in the gallery ID I am looking to embed on the page and then have it display using the Gallery View template. I have stumbled across the following links and I am just going in circles not getting this to work properly, and I am not sure if my PHP code in my page.php file is 100% correct. Any help on this matter would be great, and I created the nggallery folder in my custom theme directory, and uploaded the gallery-galleryview.php in to it.
Here is the PHP code in my file:
<?php /* NG Gallery Custom Field Rotating Images */
$gallery = get_post_meta($post->ID, 'gallery', true);
$gal = $gallery;
if( !empty($gal) )
{
$nggtemplate = "template=galleryview images=0";
$gal = apply_filters('the_content', $gal );
echo $gal;
}
?>
I got this from reading the following threads and sites online:
1) http://wordpress.org/support/topic/plugin-nextgen-gallery-nextgen-carousel?replies=10
2) http://translate.google.com/translate?hl=en&sl=nl&tl=en&u=http%3A%2F%2Fwww.doede.net%2Fwordpress%2Fhandleidingen%2Fnextgen-carrousel-template-op-maat%2F <-- (member here on the forum who has accomplished what I am looking to do, so I hope you can reply :) )
3) http://mygraphicfriend.wordpress.com/2010/01/11/custom-style-sheet-and-templates-for-nextgen-gallery-with-special-instructions-for-child-themes/
4) http://nextgen-gallery.com/templates/galleryview/
5) http://www.kimwoodbridge.com/using-wordpress-custom-fields-to-display-nextgen-gallery-slideshows-conditionally/
Those are basically of the links I have stumbled upon, but I can't get the gallery to load in the gallery view theme, and I have spent countless hours on something that I am sure is super easy and I am just overlooking at this point from starring at it for so long. Thank you to everyone who chimes in and can help me out here!