I would only like to show watermarks to guests (anyone that isn't logged in) but let logged-in users see and download watermark-free images. Seeing the watermark on the image page but downloading it without one would be fine too. Is there an option for this?
Comments
You can use `printCustomSizedImage()` to show the image with or without the watermark--that is a parameter to the function.
http://www.zenphoto.org/news/how-to-read-the-zenphoto-functions-guide
`full-image.php` isn't there.
http://www.zenphoto.org/documentation/functions/_template-functions.php.html#functiongetUnprotectedImageURL
http://www.zenphoto.org/documentation/functions/_template-functions.php.html#functiongetProtectedImageURL
Add a check using `if(zp_loggedin()) { … } else { … }`
I have it set up so that logged in users see and download (no more full-image.php... I have so it downloads directly) a watermark-free image while guests see and download a watermarked image.
Thank you!