Tagged: Disable Content Protection
How do I disable content protection so photos can be saved from device screens?
Hey joceywatts,
Thank you for the inquiry.
The theme doesn’t include a built-in content protection feature by default. Did you install any security or copyright plugins? Please create a test page and provide the site URL along with login details in the private field so we can check the issue.
Best regards,
Ismael
Hi,
Thank you for the update.
The images seems to be accessible when we check, but it’s possible that an image overlay is blocking access to the context menu or download option. We added the following code to the Quick CSS field to disable the overlay on mobile view.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.avia_transform a .image-overlay {
display: none !important;
}
}
Best regards,
Ismael