Current status of the Ning Platform is always available on the Ning Status Blog.

NC for Hire

One of the questions I get quite often is " How do i keep visitors from copying my community content?"  The truth is, you can't but If you are like me, it frustrates the hell out of you when visitors who stop by simply steal the content from your site without becoming part of the community.   This is where this tip comes in.

What this will do is automatically open a popup which tells the thief that you know they are copying content and makes a suggestion to just link back to the community.

How to Read a Land Survey

DEMO:  Try Copying anything from this page to see the result

This is a simple copy-paste notification, with a couple of effects. 

When visitors copy something from your website, they get a kind message asking them to remember to mention your website if they paste the article on their own.

That's all. Just a kind reminder. It uses Session Storage to avoid spamming the visitor with messages in case they copy more than one article. This means that the message will show once every time they visit your website and try to copy. You can also use Local Storage if you want to show the message only once, untill the visitors reset it with a cleaner or using their browser cleaning tools.

 

Step One:   Edit this block of HTML and add it to the Below Footer HTML box in your Sites and Pages

<!-- Start: The copy notification -->
<div class="copy-notify">
<h3>Hey there! <br/> It looks like you are enjoying the community content. </h3>
<p>That's nice! Please <strong>don't forget</strong> to mention us if you use what you just copied on your website. Help strenthen the community by linking back to us!</p>
<br/>
<p class="thanks"><strong>Thank you very much! Have a nice day! :)</strong></p>
<div class="close-it">Ok. Don't bother me again, for this session.</div>
</div>
<!-- End: The copy notification -->

 

Step Two:  Add This Block of Jquery Code to your Custom Code bottom section in the backend  

<script type="text/javascript">
x$(function() {
x$(document).bind('copy', function() {
//Check Session Storage and show the message
if (sessionStorage.getItem('copyNotify') != 'off') {
x$('.copy-notify')
.removeClass('hideDown')
.addClass('showUp')
.css('opacity', '1');
x$('.site-wrapper').addClass('blur-it')
}
});
//Check Session Storage and show the message
x$('.close-it').click(function() {
x$('.copy-notify')
.removeClass('showUp')
.addClass('hideDown')
.css('opacity', '0');
x$('.site-wrapper').removeClass('blur-it')
sessionStorage.setItem('copyNotify', 'off');
});
});
</script>

 

 

Step Three:  Add this to your Design Studio CSS

.copy-notify {
font-family: Roboto, Arial, Helvetica, sans-serif;
background: #fff;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
padding: 20px;
position: fixed;
left: 50%;
margin-left: -150px;
bottom: 10px;
width: 300px;
border: 1px solid rgba(0, 0, 0, 0.2);
font-size: 15px;
bottom: -200px;
opacity: 0;
z-index: 9999999;
}

.copy-notify h3 {
font-weight: bold;
margin-bottom: 10px;
font-size: 19px;
}

.copy-notify p {
line-height: 20px;
}

.copy-notify .thanks {
text-align: center;
}

.close-it {
font-size: 12px;
margin-top: 20px;
background: #0288D1;
color: #fff;
padding: 10px;
text-align: center;
cursor: pointer;
-webkit-transition: all ease-out 1s;
transition: all ease-out 1s;
}

.close-it:hover {
background: #03A9F4;
}

.showUp {
-webkit-transition: all ease-out 0.300s;
transition: all ease-out 0.300s;
bottom: 0;
}

.hideDown {
-webkit-transition: all ease-out 0.300s;
transition: all ease-out 0.300s;
bottom: -200px;
opacity: 0;
}

.blur-it {
-webkit-transition: -webkit-filter ease-out 0.5s, filter ease-out 0.5s;
transition: -webkit-filter ease-out 0.5s, filter ease-out 0.5s;
-webkit-filter: blur(5px);
filter: blur(5px);
}

 

Of course, this does not totally protect your from people copying or stealing your content. It is just a friendly message to remind them to give you some credit. It also subtly lets them know that you know that they are copying your content. Enjoy! Let me know if you need help with your Ning Community!

You need to be a member of Ning Creators Social Network to add comments!

Join Ning Creators Social Network

Votes: 0
Email me when people reply –

Replies

  • You can add a little code to stop the copying off content for visitors. You can disable it for the whole site of just for certain pages if you prefer.

    For instance here is code I added to disable the copy and paste of my forum

    <script>
    x$(document).ready(function () {
    if (ning.CurrentProfile === null){
    x$('.page-general-forum').bind('cut copy paste', function (e) {
    e.preventDefault();
    });
    }
    });
    </script>

     

    To stop copying from the whole site you would just add the body instead of pages like this

    <script>
    x$(document).ready(function () {
    if (ning.CurrentProfile === null){
    x$('body').bind('cut copy paste', function (e) {
    e.preventDefault();
    });
    }
    });
    </script>

    Hope that helps JF  :-)

    • NC for Hire

      interesting Bizz.. ill check it out... thank you

    • Hi Bizz where do I put that code?  I will use the one about copying from my whole site.  That will include photos?

This reply was deleted.
 

Some interesting articles related to community management, digital marketing etc. could be found in our digest. Don't hesitate to leave a feedback so we would know that we should continue :-)

Latest Activity

Scott Bishop posted a discussion
OMG! AI does it all. Anything you want to light up your Ning site, just ask Google AI. That's what…
Feb 5
Scott Bishop replied to Alex - Rosas † Negras's discussion
HTML Browser Popup Window Generator,possible with a click to have the window open for ning or other pages, this is my example
"Where at in a 3.0 website do you paste the code to? "
Feb 3
Scott Bishop replied to George H. Compton IV's discussion
(Ning 2 and 3) welcome / sign-in and sign-up pop-up module. Updated Aug 24, 2017
"Hi George, I'm not sure if this tip has been outdated or for some reason it's not working on my…"
Feb 3
Eva updated their profile
Jan 28
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"https://community.surfoutlook.com/
However, it's been solved. Ning helped me out with it. "
Jan 27
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I don't remember your site, I'll check for you, can I have the link?"
Jan 26
Scott Bishop replied to ⚡JFarrow⌁'s discussion
🖼️ Improve Accessibility & SEO on Your Ning Photo Pages by Automatically Adding ALT Text from Photo Titles
"On your step 3 where you say "Paste in the script below", I'm not finding that. Did you forget to…"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I think that setting was switched over to Admin as a default when I converted from 2.0 to 3.0…"
Jan 25
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"settings members must post, if you put ADMIN it is FORBIDDEN TO PEOPLE"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I got an answer back from Ning Support within an day. It was a setting that somehow slipped out of…"
Jan 22
Scott Bishop posted a discussion
I just realized that my members can no longer post pictures, videos, blogs, events, or anything…
Jan 21
Eva updated their profile
Jan 18
More…

Meanwhile, you can check our social media channels