Has anyone modified a theme to support multiple players in Album view? It would save some navigation if visitors didn't have to 'click through' to listen to the audio. I realise it could cause some havoc if they were to be played simultaneously. If that mod is possible, perhaps a smaller player could be used to make it more like the Amazon 'listen' sampler list layout.
Posts: 8339
http://www.flashyourweb.com/forum/viewtopic.php?forum=2&showtopic=2150&highlight=e2%20in%20gallery
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2
Posts: 26
Okay, that's going to do wonders, I can see. Thanks for your reply. I was having some trouble hiding storage albums from my visitors, and still letting the minislideshow and E2 player access them. I'm making a site for my buddy's band, and selling songs and albums as downloads straight from embedded gallery using checkout. Do you know anything about passing those checkout variables to a CMS page? I'm using checkout, checkout paypal, and checkout download. Here's the link:
www.apff.ca
Please forgive any vulgarities you might encounter.
Also, can I link to your site with your logo on my home page? You remain in my opinion, one of the most helpful people on the internet.
All the best
Posts: 8339
GalleryUtilities can put request variables transparently:
GalleryUtilities::putRequestVariable('myKeyName', 'myKeyValue');
If you are trying to accomplish this in a cms page, mediaBlock can render multiple mp3Audios on a single page.
What I do to hide albums is to place them outside the breadcrumb root so navigating to them is impossible without a direct url.
$gallery->setConfig('breadcrumbRootId', someAlbumId);
IMO the hidden album module creates view problems and is more of a pain than anything - so the breadcrumb method works better.
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2
Posts: 26
MediaBlock will be perfect for this application, but I don't actually speak gallery code, where would I use those lines? The breadcrumb method looks especially helpful.
Posts: 8339
a sample of showing multiple mp3's on one page
http://www.flashyourweb.com/gallery2/mediaBlock.php?g2_itemId=31&mode=dynamic&g2_view=dynamicalbum.RandomAlbum&limit=4
as for breadcrumbs... on FYW we have albums "Public", "CMS", "PRIVATE" and "SAMPLE MEDIA"
the PUBLIC album is the root we want for our non-admin users so we $gallery->setConfig('breadcrumbRootId', 418); where 418 is the id for the PUBLIC album so guests and non-admins never see those othe albums in the breadcrumbs.
within this root album we have our user albums, videos, image samples, mp3's... so these users are allowed to roam anywhere within that album.
you can place $gallery->setConfig('breadcrumbRootId', 418); in config.php near the end of the file, or in your embedded page before GalleryEmbed::handleRequest();
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2
Posts: 26
That breadcrumb method is excellent, thanks for the tip. How would the mediablock work with GalleryUtilities::putRequestVariable to make checkout variables available for each item?
Posts: 8339
it may be better to perform this action directly in the album page as the add to cart/checkout link is already there foreach.
But I'd be asking this in the marketplace forum.
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2
Posts: 26
Yes, it is fine the way it is. Thanks for your help
Posts: 26
I have set my breadcrumb root to a public album, and it works great for the breadcrumb link, All regular users can not navigate above the public album. But when I am not logged on as a registered user, and type in www.dreadfulimagery.com/gallery
I can still view all of the albums that were hidden in the normal view. I was hoping to make these mostly hidden, and available to the people who commissioned the shoot. I really don't want to have to create users and permissions to allow guests of events to view their groups' photos. Any ideas?
Posts: 26
Is there a method like setting the breadcrumb root for the Album quick links menus?
Posts: 8339
The DHTML menu? dunno.
I have a working tree menu that I can place anywhere.
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2
Posts: 5
What does the working tree menu means?
Posts: 26
I'm using the breadcrumb root method to hide albums at www.connietreen.com but www.connietreen.com/gallery still shows up in the google search. Do you know how I can hide that root album from google?
Posts: 16504
Google is probably trying to be smart about digging around your site and sees that connietreen.com/gallery/v/connie is below /gallery and linked to from /gallery
Why not move your main stuff you want everyone to see to /gallery and move the rest of your "hidden" stuff below that like /v/website and /v/admin
Then you could simply create a robots.txt and tell google to not crawl those directories:
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here
Posts: 16504
oh wait, I just thought about that a bit more. You'd probably want them a bit deeper so you can hide their parent album, but still allow their content to be visible so you can link to them.
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here
Posts: 8339
http://www.flashyourweb.com/gallery2/cooliris.php
the tree menu on the right of the cooliris wall
-s
FlashYourWeb and Your Gallery with The E2 XML Media Player for Gallery2