Hello ! How to protect my texts of being copied with ctrl+c? (right click protect app is not enough for me)

Hi,
You can make the text unselectable using code like this:

$w.onReady(() => {
let text =  "some text";
$w("#text1").html = `<p style="-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none; ">${text}</p>`
 })

Another way will be by putting a transparent layer over the text.

In both ways the text can be copied from the page source code.

There is also a feature request for this to be implemented directly in Wix - https://support.wix.com/en/article/wix-media-request-right-click-protect-app-supporting-ctrlc-copying

I love you!!! THANK YOU SOOO MUCH!!!

Note: I think this solution has stopped working.
Wix probably changed the styling properties that can be assigned to the text.htm;
The alternative solutions are putting a transparent layer over the text or using custom element or an iframe with this css.