Preventing visitors from downloading your images, Stopping images from being copied or downloaded, How To Protect Your Website From Image Theft, and disabling the right-click function on the particular product in an e-commerce website on Blogspot blogger.
Let's say you own an e-commerce business. You post portfolio photos on your website.
Now, another person who is also business-minded and wants to run a similar e-commerce store by using your photos.
Chances are, he may copy some of your photos to sell online or plagiarise all of your photos to sell online.
Let's suppose this person knows the nuts and bolts of SEO, i.e. search engine optimisation.
Now, the same product is sold by you and is sold by your imposter. Who do you think will rank one in the Google search results?
The person who knows SEO is very likely to perform well in the Google search results and the product would be sold by him.
How do you go about it?
Image theft is a real issue. The owner of the image should be given proper credit before using it anywhere else.
But what can be done when other people copy your images for personal or commercial use?
Today, I am going to tell you how you can save your images from being copied. How you can prevent the pictures used on your website from getting plagiarized by someone else?
This method of preventing images on a website from being copied will disable the right-click and save as an option for the visitor.
Moreover, this will communicate with the user of the website and tell that the option of copying an image is not allowed. This is the property of a dynamic website.
Here another problem arises for E-Commerce businesses.
Suppose the customer wants to communicate his concern or query about a product, how will he download the product image and share his concern with the executives?
Well, there are two solutions to this problem
None of the solutions will require the download of the product image and sharing it with customer service.
This is possible by having a distinct product number for every product. So that both parties are aware of which product is being talked about.
Another solution that would not require the download of the item image by the user is the screenshot method where the user can share the screen print of the product with the customer service department. In this method, the screenshot quality is not the same as that of the download quality of the image.
Hence the user can easily speak about the product to the customer service department.
To achieve this whole thing we would need the help of a JavaScript code.
JavaScript code in an e-commerce website or Blogger/Blogspot for photo prevention
We can use this JavaScript code in two ways
1) on a particular post where I do not want visitors to copy the images from my e-commerce/Blogspot website or,
2) on the whole e-commerce/blogger website if you want to disable the copying of your images
How to achieve blocking of images on an e-commerce/Blogspot website from being copied
1) Copy the below code and paste it into the HTML format of the particular post before publishing it
<script language=JavaScript>
<!--
//Disable right mouse click Script
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;}}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;}}}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
2) or add a new gadget from the layout in the blogger website and paste it into the HTML/JavaScript gadget, to prevent the download of your blogspot image.
Try it yourself: The challenge
I have found this feature of disabling image of theft on Tutorials by Catalyst| Ai YouTube channel.
Does this disabling of image from being copied or downloaded works on mobile as well as laptop too?
Yes it does. On any screen if you would try to download this image you would not be able to do so because of the JavaScript code we have put to disable the image from being copied on e-commerce/ blogspot website.
Comments
Post a Comment