Sinisterly
Copyright of your forums when copy and paste - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Design (https://sinister.ly/Forum-Design)
+--- Forum: Web Design (https://sinister.ly/Forum-Web-Design)
+--- Thread: Copyright of your forums when copy and paste (/Thread-Copyright-of-your-forums-when-copy-and-paste--72333)



Copyright of your forums when copy and paste - Quanity - 07-28-2015

Well Goto your skins templates Then > Ungrouped Template > Header Include.

Paste this

[hide]
PHP Code:
<script type="text/javascript"> function addLink() {     var body_element = document.getElementsByTagName('body')[0];     var selection;     selection = window.getSelection();     var pagelink = "<br /><br />More information: <a href='"+document.location.href+"'>"+document.location.href+"<br />© Copyright <b>{$mybb->settings['bbname']}</b>";     var copytext = selection + pagelink;     var newdiv = document.createElement('div');     newdiv.style.position='absolute';     newdiv.style.left='-99999px';     body_element.appendChild(newdiv);     newdiv.innerHTML = copytext;     selection.selectAllChildren(newdiv);     window.setTimeout(function() {     body_element.removeChild(newdiv);     },0); } document.oncopy = addLink; </script>
[/hide]

A Simple Preview :
if you copied My Forums
and paste somewhere else it shows like

My Forum  More information: http://localhost/mybb/ © Copyright Forums

Image

[Image: vzUiEPz.png]


RE: Copyright of your forums when copy and paste - Pirate - 07-28-2015

(07-28-2015, 05:02 AM)Mr_Devil Wrote: http://localhost/mybb/ © Copyright
Image

[Image: vzUiEPz.png]

Really mate
Are you like that


RE: Copyright of your forums when copy and paste - Quanity - 07-28-2015

(07-28-2015, 01:31 PM)Pirate Wrote:
(07-28-2015, 05:02 AM)Mr_Devil Wrote: http://localhost/mybb/ © Copyright
Image

[Image: vzUiEPz.png]

Really mate
Are you like that

Are you fine m8 ? whats problem Tongue


RE: Copyright of your forums when copy and paste - Noah94 - 07-31-2015

I don't see why anyone would feel the need to remove the copyright of the forum. I mean they are giving the software away for free, the least you could do is leave there copyright there to somewhat promote them.


RE: Copyright of your forums when copy and paste - Esoterith - 10-03-2015

I'll try this out!