geschlossen Jetzt geschlossen.

Copyright © PRINT&COFFEE - Alle Rechte vorbehalten

				
					Copyright ©<span id="copyright"><script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script> </span> <a href="https://www.print-coffee.com/" alt="Werbeagentur Potsdam">PRINT&COFFEE</a> - Alle Rechte vorbehalten
				
			

Blurry Background

				
					

/* fallback weiße schrift */
selector {
  background-color: rgba(47, 47, 47, 0.8);
}

/* if backdrop support: very transparent and blurred */
@supports ((-webkit-backdrop-filter: blur(2em)) or (backdrop-filter: blur(2em))) {
  selector {
    background-color: rgba(255, 255, 255, 0.0);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }
				
			

Wir vermissen dich

				
					<!-- Wir vermissen dich - Nachricht im verlassenen Browser Tab -->
<script>
jQuery(document).ready(function( $ ){
// Get page title
  	var pageTitle = $("title").text();
  
// Change page title on blur
  $(window).blur(function() {
	  $("title").text("Twins Crew | Wir vermissen Dich ♡");
	});

// Change page title back on focus
	$(window).focus(function() {
	  $("title").text(pageTitle);
	});
});
</script>
				
			

Update Benachrichtigung deaktivieren (Funktion PHP)

				
					// Disable core update emails
add_filter( 'auto_core_update_send_email', '__return_false' );

// Disable plugin update emails
add_filter( 'auto_plugin_update_send_email', '__return_false' );

// Disable theme update emails
add_filter( 'auto_theme_update_send_email', '__return_false' );

				
			

Rechtsklick deaktivieren

				
					<script type="text/javascript">
//<![CDATA[
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Disable context menu on images by GreenLava (BloggerSentral.com)
Version 1.0
You are free to copy and share this code but please do not remove this credit notice.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
    function nocontext(e) {
        var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
        if (clickedTag == "IMG") {
            alert(alertMsg);
            return false;
        }
    }
    var alertMsg = "HIER KOMMT DIE NACHRICHT HIN!"
    document.oncontextmenu = nocontext;
//]]&gt;
</script>