Turn printing off but...
jasonstone
Registered Users Posts: 735 Major grins
Hey all,
I don't want people to be able to purchase my photos for any reason - it's for offsite backup and for me to stream to my website.
However it's annoying that so many functions are attached to the Buy button - which when I turn printing off disappears.
Is there anyway to just see the Buy button when the owner is logged in as I'd like to create Animoto movies - but the only link is under the Buy button - it's very frustrating
I was wondering if anyone else would think it better to have certain functions under some new button - or moved elsewhere to perhaps the gallery menu?
Cheers
Jason
I don't want people to be able to purchase my photos for any reason - it's for offsite backup and for me to stream to my website.
However it's annoying that so many functions are attached to the Buy button - which when I turn printing off disappears.
Is there anyway to just see the Buy button when the owner is logged in as I'd like to create Animoto movies - but the only link is under the Buy button - it's very frustrating
I was wondering if anyone else would think it better to have certain functions under some new button - or moved elsewhere to perhaps the gallery menu?
Cheers
Jason
Jase // www.stonesque.com
0
Comments
Portfolio • Workshops • Facebook • Twitter
1) You could make the buy button only be visible when you are logged in. This is a CSS hide operation so it doesn't prevent nefarious people from buying things, but it generally works. To do so, turn on printable and you would add this CSS:
.notLoggedIn #buyButton {display: none;}
2) You could turn on printable, but set your portfolio pricing for every photo and every size to $0 which means it's not offered for sale.
3) You can add this CSS which (in some modern browsers) will hide the first two buy items.
#cartButtonsWrapper .yui-menu-button-menu ul:nth-child(1) {display: none;}
4) You could combine the first three.
Homepage • Popular
JFriend's javascript customizations • Secrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Cheers, Jason
Jase // www.stonesque.com