Skip to content

Remove Microsoft AutoUdpdate cause it sucks

Follow these steps to remove the Microsoft AutoUpdate application: Open Finder From the menu bar, select "Go" > "Go to Folder" (or use the keyboard shortcut Command+Shift+G) Enter the following path: /Library/Application Support/Microsoft/ Locate the folder named "MAU" or "MAU2.0" (the…

Mehr Lesen

Better Arrow Icons for the Carousel Modules in Total Theme

/*CAROUSEL ARROWS*/ .wpex-carousel__arrow-icon svg, .wpex-carousel__arrow-icon.wpex-icon, .wpex-carousel__arrow svg /*, .wpex-slider .sp-arrow-inner*/ { display: none; } .wpex-carousel__arrow:where(:not(.theme-button)) { background-color: transparent !important; } .owl-prev .wpex-carousel__arrow-icon:before, .wpex-carousel__arrow--prev:before /*, .wpex-slider .sp-previous-arrow:before*/ { font-family: 'enym' !important; content: "\e909" !important; color: var(--wpex-accent) !important; font-size: 60px; position: relative;…

Mehr Lesen

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
An den Anfang scrollen