How to Stop copying of text in Description Box
Hi All,
Running version 1.58a on a linux server running PHP Version: 8.1.31
Template Bootstrap Version 3.7.4
CKEditor version 5
Image Handler version 5
I am wanting to see if I can stop people from copying anything in the description box of the website only by using one on theses because I am having a few people copy our information of products and pasting onto their site which is like acting like a theif in my eyes. The information that we are loading is quite extensive and time comsuming and costly and I have seen other sites using the feature so people can't use it and they have to manually type in the information on their site so it stop them from doing it.
Option 1. Code to stop any copying of text images etc within the Products Description Box of the listing.
Option 2. To be able to use image handler as a tool so that any information will have a watermark going across box on a 45% angle.
Any help with this would be greatly appreciated because I am getting sick of the amount of information that is being copied by other sites.
Re: How to Stop copying of text in Description Box
nothing will be 100%. but you can start here. find this section of code in your active template files:
https://github.com/lat9/ZCA-Bootstra...splay.php#L103
replace that line with:
PHP Code:
<div id="<?= $html_id_prefix ?>-productDescription" class="productDescription mb-3" inert="true">
that will prevent most users from copying any of your text.
but again, nothing is full proof.
best.
Re: How to Stop copying of text in Description Box
Quote:
Originally Posted by
carlwhat
nothing will be 100%. but you can start here. find this section of code in your active template files:
https://github.com/lat9/ZCA-Bootstra...splay.php#L103
replace that line with:
PHP Code:
<div id="<?= $html_id_prefix ?>-productDescription" class="productDescription mb-3" inert="true">
that will prevent most users from copying any of your text.
but again, nothing is full proof.
best.
Thank you that appears to be working ok and how I wanted it.
Thank you the clear description it was a great help for someone like myself.