I'm currently using a custom Slider for my photoset posts on tumblr (http://woothemes.com/flexslider)
I wanted to know if its possible to make my theme display the default tumblr photoset (instead of the custom slider) when a post is tagged as #set. I wouldn't mind if I also had to tag the photoset posts that I want to display using the custom Slider to make it work.
It seems pretty complicated for me but maybe there's a solution using javascript.
Thank you
Update: I spent some time on it and I managed to solve this without any javascript (it was simpler than I thought it would be)
.post .photo-slideshow {display: none;}
.post.set .flexslider {display: none;}
.post.set .photo-slideshow {display: block!important;}
I basically put together in the {block:Photoset}...{/block:Photoset}
tag. both the flexslider code and Pixel Union's custom photoset code and used the css above to hide the slider when the photoset is tagged as #set.
I had to use the custom photoset script because it wouldn't work with tumblr's default photoset iframe.