Skip to content

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

Outline headings

.nectar-highlighted-text[data-style="text_outline"] em { -webkit-text-stroke-color: inherit; -webkit-text-fill-color: rgba(0,0,0,0); -webkit-text-stroke-width: 0.02em; }

Mehr Lesen

Showing User’s „custom POst Types“ instead of just regular „posts“ in the Admin’s User table

add_action('manage_users_columns','yoursite_manage_users_columns'); function yoursite_manage_users_columns($column_headers) { unset($column_headers['posts']); $column_headers['custom_posts'] = 'Assets'; return $column_headers; } add_action('manage_users_custom_column','yoursite_manage_users_custom_column',10,3); function yoursite_manage_users_custom_column($custom_column,$column_name,$user_id) { if ($column_name=='custom_posts') { $counts = _yoursite_get_author_post_type_counts(); $custom_column = array(); if (isset($counts[$user_id]) && is_array($counts[$user_id])) foreach($counts[$user_id] as $count) { $link = admin_url() . "edit.php?post_type=" . $count['type']. "&author=".$user_id;…

Mehr Lesen

WooCommerce: Apply Coupon COde via URL Parameter

Use like this: https://examplestore.com/?coupon_code=5dollarOff function webroom_woocommerce_coupon_links(){ // Bail if WooCommerce or sessions aren't available. if (!function_exists('WC') || !WC()->session) { return; } /** * Filter the coupon code query variable name. * * @since 1.0.0 * * @param string $query_var Query…

Mehr Lesen
An den Anfang scrollen