Total Theme: Recurring Problem with Row Padding if it has a background-color
This is how I want it: Adding a bavkgroundf-color adds a unwanted padding of 15px on all sides. Just remove it and all is good:
This is how I want it: Adding a bavkgroundf-color adds a unwanted padding of 15px on all sides. Just remove it and all is good:
/*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;…
//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…
Works only with the total theme Framework. If a post has the custom Meta "enym_custom_meta" and if this is empty then return a "hidden" string. Otherwise, return a space (makes it more robust with some WP Kaery elements). /** *…
//=================================================== //SHORTCODE: SITE URL //=================================================== add_shortcode( 'site_url', function( $atts = null, $content = null ) { return site_url(); } );
//=================================================== //SHORTCODE: SEARCH TERM //=================================================== add_shortcode( 'search_term', function( $atts = null, $content = null ) { return $_GET['s']; } );
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…
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…
/*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;…