Skip to content

Change the texts for the comment form

//COMMENT FORM //change title conditionally for a certain post type function enym_comment_title($defaults) { // put your condition here //global $post; //if ( $post && $post->post_type == 'pattern' ) { if( is_singular('post') ) { // is_page('my-page') || $defaults['title_reply'] = 'Haben Sie…

Mehr Lesen

Site URL Shortcode

//=================================================== //SHORTCODE: SITE URL //=================================================== add_shortcode( 'site_url', function( $atts = null, $content = null ) { return site_url(); } );

Mehr Lesen

Shortcode to display the search term

//=================================================== //SHORTCODE: SEARCH TERM //=================================================== add_shortcode( 'search_term', function( $atts = null, $content = null ) { return $_GET['s']; } );

Mehr Lesen

E-mail Weiterleitungen in Microsoft Exchange

Im Admin-Center auf Exchange klicken, um zum EAC zu gelangen: Postfacheinstellungen im Exchange EAC konfigurieren Im EAC auf "Empfänger" - Postfächer klicken: Die gewünschte Mailbox anklicken und oben rechts auf Weiterleitung klicken: Status der Weiterleitung und Weiterleitungsziel definieren Über den…

Mehr Lesen

Total Theme GitLab Gists

There are many great code snippets in their Gitlab. You might find more on their official wpexplorer website and of course in the very active public comment section on themforest.net! Have Fun! And don't forget: Total is the greatest WordPress…

Mehr Lesen

Depth Scroll indicator – Laser Line on top

/*SCROLL INDICATOR*/ .scroll-watcher { height: 10px; position: fixed; top: 0; left:0; z-index: 1000; background-color: var(--wpex-accent, red); width: 100%; scale: 0 1; transform-origin: left; animation: scroll-watcher linear; animation-timeline: scroll(y); -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out;…

Mehr Lesen

Customize Matomo Interface Design

Activate Developer Mode Install Code Injector Go to: Settings - System - Code Injector Add CSS: <style> nav {background-color: #62A4F7 !important;} .default-piwik-logo, .logo.brand-logo img { content: url('https://www.enym.com/wp-content/uploads/2021/04/enym-medienkompetenz-logo.svg') !important; } .logo.brand-logo a::before { width: 188px; height: 35px; content: url('https://www.enym.com/wp-content/uploads/2021/04/enym-medienkompetenz-logo-white.svg') !important; }…

Mehr Lesen
An den Anfang scrollen