Currently we are thoroughly watching over the situation in Ukraine and trying to support the brave and unstoppable spirit of Ukrainian nation in fight against Russian invasion by donating to the official resources provided by the Government. NING is standing with Ukraine in this fight for freedom and independence and if you want to show your support you can donate here.
Слава Україні! Героям Слава!

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

Rhonda liked ⚡JFarrow⌁'s discussion Ning Creators Sound Off: Share Your Network
Thursday
⚡JFarrow⌁ updated their profile photo
Mar 24
Markus Miner and ⚡JFarrow⌁ are now friends
NC for Hire
Mar 19
Markus Miner replied to ⚡JFarrow⌁'s discussion
Ning Creators Sound Off: Share Your Network
"Man I'd love the help I was about just start a new network"
Mar 19
⚡JFarrow⌁ replied to ⚡JFarrow⌁'s discussion
Ning Creators Sound Off: Share Your Network
"I can fix that... ill send you my contact info. no problem"
Mar 18
⚡JFarrow⌁ replied to ⚡JFarrow⌁'s discussion
Ning Creators Sound Off: Share Your Network
"I can fix that... ill send you my contact info. no problem"
Mar 18
Markus Miner replied to ⚡JFarrow⌁'s discussion
Ning Creators Sound Off: Share Your Network
"Changed my design and now my logo overlap my new background header with no option to remove it.…"
Mar 15
Markus Miner replied to ⚡JFarrow⌁'s discussion
Ning Creators Sound Off: Share Your Network
"Because Ning is a terribly ran business with lack of upgrades and becoming obsolete "
Mar 15
Paul Corona replied to Anastasia_Ning_Support's discussion
Migration FAQ
"It might be transferred, but finding it and setting it up in a usable format is virtually…"
Mar 14
How to Speak to Travelocity Customer Service updated their profile
Feb 26
⚡JFarrow⌁ posted a discussion
Its been a few years since we have collaborated on a Community Share Post.   I would like to know…
Feb 24
Anderson updated their profile
Feb 20
More…