<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Topic: [Plugin: NextGEN Gallery] Menu List for Albums and Galleries</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Topic: [Plugin: NextGEN Gallery] Menu List for Albums and Galleries</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 03:12:35 +0000</pubDate>

<item>
<title>parisvega on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1235270</link>
<pubDate>Mon, 05 Oct 2009 03:53:07 +0000</pubDate>
<dc:creator>parisvega</dc:creator>
<guid isPermaLink="false">1235270@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey Guys,&#60;/p&#62;
&#60;p&#62;I think I found the answer: Subalbums!&#60;/p&#62;
&#60;p&#62;Step 1: Create an album. This one will act as the &#34;master&#34; album.&#60;br /&#62;
Step 2: Create more albums. These will act as &#34;subalbums&#34; that will actually be displayed&#60;br /&#62;
Step 3: Select the &#34;master&#34; album in the Album admin.&#60;br /&#62;
Step 4: Drag all &#34;subalbums&#34; into the master album.&#60;br /&#62;
Step 5: Save/Update the master album.&#60;br /&#62;
Step 6: Create a &#34;master&#34; album template that lists the albums and galleries&#60;/p&#62;
&#60;p&#62;I'm trying it out now.
&#60;/p&#62;</description>
</item>
<item>
<title>parisvega on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1235236</link>
<pubDate>Mon, 05 Oct 2009 02:53:27 +0000</pubDate>
<dc:creator>parisvega</dc:creator>
<guid isPermaLink="false">1235236@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm currently using the album template and gallery template as well. I would also like to see the ability to list all albums on one page. It would function similar to how galleries are listed.&#60;/p&#62;
&#60;p&#62;Someone would need to write a custom query to access the albums from the nextgen tables in the database. Anybody up for the challenge?
&#60;/p&#62;</description>
</item>
<item>
<title>monicaDC on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1219984</link>
<pubDate>Tue, 22 Sep 2009 00:21:17 +0000</pubDate>
<dc:creator>monicaDC</dc:creator>
<guid isPermaLink="false">1219984@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hi! I am not sure if this is what you are trying to accomplish but have you tried using [album id=1 template=extend ]?  Here is an explanation on this. &#60;a href=&#34;http://nextgen.boelinger.com/album/&#34; rel=&#34;nofollow&#34;&#62;http://nextgen.boelinger.com/album/&#60;/a&#62;  Hope this helps.
&#60;/p&#62;</description>
</item>
<item>
<title>ssorvari on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1218982</link>
<pubDate>Mon, 21 Sep 2009 06:34:28 +0000</pubDate>
<dc:creator>ssorvari</dc:creator>
<guid isPermaLink="false">1218982@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anything new about this?
&#60;/p&#62;</description>
</item>
<item>
<title>ssorvari on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1203243</link>
<pubDate>Mon, 07 Sep 2009 21:02:58 +0000</pubDate>
<dc:creator>ssorvari</dc:creator>
<guid isPermaLink="false">1203243@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I did a new album template album-list.php and it was like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/**
Template Page for the list of albums

Follow variables are useable :

	$album     	 : Contain information about the album
	$galleries   : Contain all galleries inside this album
	$pagination  : Contain the pagination content

 You can check the content when you insert the tag &#38;lt;?php var_dump($variable) ?&#38;gt;
 If you would like to show the timestamp of the image ,you can use &#38;lt;?php echo $exif[&#38;#39;created_timestamp&#38;#39;] ?&#38;gt;
**/
?&#38;gt;

&#38;lt;?php if (!defined (&#38;#39;ABSPATH&#38;#39;)) die (&#38;#39;No direct access allowed&#38;#39;); ?&#38;gt;&#38;lt;?php if (!empty ($galleries)) : ?&#38;gt;

&#38;lt;h4&#38;gt;&#38;lt;?php echo $album-&#38;gt;name ?&#38;gt;&#38;lt;/h2&#38;gt;
&#38;lt;ul class=&#38;quot;albumit&#38;quot;&#38;gt;
	&#38;lt;!-- List of galleries --&#38;gt;
	&#38;lt;?php foreach ($galleries as $gallery) : ?&#38;gt;
		&#38;lt;li&#38;gt;&#38;lt;a class=&#38;quot;Link&#38;quot; href=&#38;quot;&#38;lt;?php echo $gallery-&#38;gt;pagelink ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php echo $gallery-&#38;gt;title ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
 	&#38;lt;?php endforeach; ?&#38;gt;
&#38;lt;/ul&#38;gt;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then I put do_shortcode-function to my sidebar. Like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;echo do_shortcode(&#38;#39;[album id=5 template=list]&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Thats working, but in gallery-page it returns nothing. And just on gallery-page I need the hierarchical menu list of albums/galleries :(&#60;/p&#62;
&#60;p&#62;Can anyone help?
&#60;/p&#62;</description>
</item>
<item>
<title>ssorvari on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1199571</link>
<pubDate>Fri, 04 Sep 2009 17:07:44 +0000</pubDate>
<dc:creator>ssorvari</dc:creator>
<guid isPermaLink="false">1199571@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There is one who want know this too.
&#60;/p&#62;</description>
</item>
<item>
<title>laosanster on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1199495</link>
<pubDate>Fri, 04 Sep 2009 16:15:05 +0000</pubDate>
<dc:creator>laosanster</dc:creator>
<guid isPermaLink="false">1199495@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anyone? I want to know this too.
&#60;/p&#62;</description>
</item>
<item>
<title>nktm on "[Plugin: NextGEN Gallery] Menu List for Albums and Galleries"</title>
<link>http://wordpress.org/support/topic/285556#post-1122276</link>
<pubDate>Wed, 01 Jul 2009 06:43:35 +0000</pubDate>
<dc:creator>nktm</dc:creator>
<guid isPermaLink="false">1122276@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How would I go about adding a hierarchical menu list of albums/galleries.  I don't want any images, just a link to the page...is there a widget that can do this?&#60;/p&#62;
&#60;p&#62;Such that:&#60;br /&#62;
Album 1&#60;br /&#62;
-GalleryA&#60;br /&#62;
-GalleryB&#60;br /&#62;
Album 2&#60;br /&#62;
-GalleryC&#60;br /&#62;
etc...&#60;/p&#62;
&#60;p&#62;Simply put, what I am looking for is a way to create a dynamic menu for a gallery template for ease of navigation between Albums/Galleries
&#60;/p&#62;</description>
</item>

</channel>
</rss>
