View Full Version : Disable "Save Video" option for viewers/guests
nish
Aug-27-2008, 12:56 PM
Hi,
Has this been implemented yet? If not does anyone know why? Or if it is in the pipeline?
Thanks
nish
Sep-01-2008, 01:50 PM
Bump
eenusa
Sep-02-2008, 11:02 AM
This goes along with my question - which I mistakenly posted in SmugMug support: "Is there a way to protect posted videos from download? Not only do I see a Download/Real Player pop up at the top of the clip when it starts playing, but there is a share button at the end."
docwalker
Sep-03-2008, 06:02 PM
Not yet. Maybe in the future. Thanks for letting us know you want it.
nish
Sep-11-2008, 12:37 PM
Ah. Thought there was a bit of code that I could put in that took away the download option. Must have got confused. Thanks for the reply :) Hopefully we'll get the option soon :)
SamirD
Sep-17-2008, 02:55 PM
There is:in the meantime, you could add this to your CSS for your movies galleries:
.gallery_3800406 .photoSizes {display: none;}Andy posted it here:
http://www.dgrin.com/showpost.php?p=678614&postcount=42
I did some variation of this that blocked saving videos on all my galleries. Let me see what I did.
I used this and it worked in all galleries. It did not affect picture galleries where I allowed people to download copies of photos:.photoSizes {display: none;}Hope this helps.
nish
Oct-16-2008, 12:46 AM
There is:in the meantime, you could add this to your CSS for your movies galleries:
.gallery_3800406 .photoSizes {display: none;}Andy posted it here:
http://www.dgrin.com/showpost.php?p=678614&postcount=42
I did some variation of this that blocked saving videos on all my galleries. Let me see what I did.
I used this and it worked in all galleries. It did not affect picture galleries where I allowed people to download copies of photos:.photoSizes {display: none;}Hope this helps.
Ah!
So .photoSizes {display: none;}
Turns off the fly thing for ALL galleries? Thats great! I had the script that Andy orignally posted about 20 times with the each individual gallery number in of those whose videos I wanted protected.
If .photoSizes {display: none;} works across everything it makes it much easier and also a lot cleaner for code :) Great! Thanks :clap
cuda70
Nov-04-2008, 12:32 PM
Ah!
So .photoSizes {display: none;}
Turns off the fly thing for ALL galleries? Thats great! I had the script that Andy orignally posted about 20 times with the each individual gallery number in of those whose videos I wanted protected.
If .photoSizes {display: none;} works across everything it makes it much easier and also a lot cleaner for code :) Great! Thanks :clap
I am not able to get this to work. I am probably doing something wrong these are my entries in the CSS section its the last one. I listed everything just in case something else is causing it not to work Thanks
#bioBox .photo {
display: none;
}
#my_banner {
width: 750px;
height: 150px;
margin: 0 auto;
background: url(http://jvalsamis.smugmug.com/photos/303574238_KC8JP-O.png) no-repeat;
}
#mystatcounter {text-align: center;}
#myterms {text-align: center;}
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
.loggedIn .homepage #galleriesBox,
.loggedIn .homepage #categoriesBox {
display: block;
}
#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
text-decoration: none;
padding: .2em 3em;
color: #fff;
background-color: #333333;
}
#navcontainer ul li a:hover {
color: #fff;
background-color: #0000CC;
}
.gallery/4948865_i2EZQ#296051952_yZKUW .photoSizes {display: none;}
}
richW
Nov-06-2008, 01:25 AM
I am not able to get this to work. I am probably doing something wrong these are my entries in the CSS section its the last one. I listed everything just in case something else is causing it not to work Thanks
Change this:
.gallery/4948865_i2EZQ#296051952_yZKUW-A-LB .photoSizes {display: none;}
}
To this:
.gallery_4948865 .photoSizes {display: none;}
Then in the gallery settings under 'look & feel' change the Appearance to Custom.
Or you can add this to your bottom javascript section:
if (YD.hasClass(document.body,"gallery_4948865") && YD.hasClass(document.body,"galleryPage"))
{
showPhotoBar = false;
}
The Appearance will still need to be set to 'custom' in the gallery settings.
cuda70
Nov-18-2008, 01:45 PM
Change this:
.gallery/4948865_i2EZQ#296051952_yZKUW-A-LB .photoSizes {display: none;}
}
To this:
.gallery_4948865 .photoSizes {display: none;}
Then in the gallery settings under 'look & feel' change the Appearance to Custom.
Or you can add this to your bottom javascript section:
if (YD.hasClass(document.body,"gallery_4948865") && YD.hasClass(document.body,"galleryPage"))
{
showPhotoBar = false;
}
The Appearance will still need to be set to 'custom' in the gallery settings.
Thanks the 1st part didn't work, I added the javascript and that worked perfectly. I really would like to thank you. I love Smugmug
vBulletin v3.5.2, Copyright ©2000-2008, Jelsoft Enterprises Ltd.