It has taken all day but I figured it out! Here’s the arrangement of the gallery if anyone needs help.
I wanted my Main Gallery to list all the artist’s names, with their photos. Once clicked it would go to the selected artist’s gallery page. On the artist’s gallery page I needed thumbnails of all their categories to choose from.
My setup is:
Main Gallery
Artist 1
Wildlife
Western
Artist 2
Landscapes
Portraits
In the Artist 1 and Artist 2 galleries I have only one image. It is a photo of the artist, the image title is the artist’s name.
When I would call the Wildlife, Western categories into the artist page, their photo would appear as well. Very undesirable, as their photo is not a category. So, the goal was to remove that thumbnail so only the categories would show. I had the same problem with the Main Gallery. When I called the child galleries it loaded every picture in all the galleries. All I wanted was the Artist’s photos.
So, with help from this post:
http://modxcms.com/forums/index.php/topic,34060.0.html I was able to remove the unwanted thumbnails from all the pages!
I opened galleryOuterTpl.html in Dreamweaver and deleted the thumbs info at the bottom:
[+maxigallery.embedtype:isnot=`smoothgallery`:then=`
[+maxigallery.pictures:isnot=``:then=`
<div class="thumbscontainer">
<ul class="thumbs">
[+maxigallery.pictures+]
</ul>
</div>
`+]
Also deleted an extra `+] at the very bottom, too. There was also two marks in the middle of the code, at the end of line 25 and 29, I removed them as well.
I created a chunk, named it gallerynothumbsTpl and pasted my new galleryOuterTpl into it.
In Main Gallery I put this snippet: [!MaxiGallery? &gal_query_ids=`17,18` &query_level_limit=`0` &limit=`1`!] (17 and 18 is the ID of the subgalleries, yours would be different)
In the Artist 1 and Artist 2 galleries I put this snippet: [!MaxiGallery? &display=`childgalleries` &galleryOuterTpl=`gallerynothumbsTpl`!]
In Wildlife, Western, Landscapes and Portraits I put this snippet: [[MaxiGallery? &display=`embedded` &embedtype=`slimbox` &pics_per_row=`3` &max_thumb_size=`110` &max_pic_size=`0` &thumb_use_dropshadow=`1`]]
Not too bad! I haven’t even begun to customize the css and templates yet and already it’s coming together nicely. I am totally new with Modx and am already somewhat obsessed!
I hope this helps someone! I have found the forum quite useful and will probably visit frequently.