You can prevent users from sharing your questions by copying and pasting the question text if you add a few lines of CSS to your active TalentLMS theme.
Note: Users that are determined to share your questions may find another way to do it. Also, browser support might be limited. |
To make your test questions copy-proof, follow these steps:
1. Sign in to your TalentLMS account as Administrator and go to Home > Account & Settings > Themes (1).
2. From the Theme drop-down list, choose your active theme.
3. Go to the CSS (2) tab.
4. In the code area, add the following CSS:
#question_area, .tl-preview-question-wrapper, #tl-test-survey-form {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
5. Click Update (3) to save your changes.