Hello! When creating a new course, is there a way to block or protect the text contained in the lessons avoiding them from being copied by the students?
What I'd love is also the possibility to integrate it with fluent forms in order to create some quiz at the end of the course.
Fabio Pinna IMHO I don't think in these days it is easy to protect text from being copied and I wouldn't bother too much. Most students are smarties - here you can find some examples what they can do and I am not sure which method would be the best to protect any text content.
ps. provided link above it is just an example - not a sponsored link - I have nothing in common with their product etc.
ps2. mouse right-click could be blocked + RSS feed but it is not a permanent solution I guess.
ps3. to disable text selection via CSS:
.cannotSelectText {
-webkit-touch-callout: none; iOS Safari
-webkit-user-select: none; Chrome/Safari/Opera
-khtml-user-select: none; Konqueror
-moz-user-select: none; Firefox
-ms-user-select: none; Internet Explorer/Edge
user-select: none; Non-prefixed version, currently
not supported by any browser
}
<div class="cannotSelectText">
Text cannot be selected
</div>
Geeks will always find a way to copy your content plus hidding text might be not a good idea for UI/UX & SEO.
Just adding a way how files could be protected but it require to duplicate solution like: Thrive Apprentice Protected File Storage. It is a really cool way but it require a bit of dev work and could be a killer feature for Courses but I am not sure if courses will be an "important" part of the fCommunity. Maybe it is easier to use Bunny storage and look for protection from there (signed URLs) but of course the fTeam could implemenet simple method "basic protection" like: block mouse right-click, block text selection via CSS.