Skip to content

Formiantor GA Tracking

/*FORMINATOR TRACKING * https://gist.github.com/wpmudev-sls/5fc34beaee5a34947cda67ccc6a56bff * https://gist.github.com/patrickfreitasdev/46c9dbf946b3cc34a46ae3a24d58635b THIS ONE HERE GA ONLY * */ add_action( 'wp_footer', function(){ /** * Tracking ID and property number * * The tracking ID is a string like UA-000000-2. * It must be included in your…

Mehr Lesen

Debugging and logging in PHP

You can also debug the problem as follows: Put this on your wp-config.php file: define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); This will create the file: wp-content/degub.log. In order to see some debug, just add lines like these on…

Mehr Lesen

Total Theme: Toggle and FAQ Buttons with Show more/ Show less Text and Icons

[vc_row gap="20"][vc_column width="1/3"][vcex_image image_id="28"][vcex_spacing class="responsive-spacer-default-half"][vc_column_text css=""]Wir gewährleisten einen reibungslosen Betrieb der Immobilien, regeln alle finanziellen Abläufe und sind die Schnitt- stelle zwischen unseren Kunden und den gewerblichen Mietern.[/vc_column_text][vcex_icon_box heading="Mehr Details" style="seven" align_center="true" heading_type="span" icon_type="enym" image="824" url_wrap="true" onclick="toggle_element" onclick_url="#kaufmaennische" image_width="60px" heading_color="palette-266"…

Mehr Lesen

Total Theme: Quote Icons in HTML Blockquote Element

Better Version: The Vectors are implemented via CSS background code. You can easily change the icons with your own vector images if you transform the SVGs with this tool: https://www.svgbackgrounds.com/tools/svg-to-css/ Use This CSS-Code to place the quote-images properly. There are…

Mehr Lesen

Forminator: ADD CSS to PDF Generator

add_filter( 'forminator_pdf_basic_template_markup', function( $html, $pdf_settings, $form_id, $entry_id ){ if ( $form_id !=37063 ) { //Please change the form ID return $html; } $css = '<style type="text/css" title="text/css" media="screen"> .forminator-pdf-header.logo-container .pdf-logo { text-align:center !important; width: 100% !important; padding-left: 100px; } .forminator-pdf-header.logo-container…

Mehr Lesen
white building

Total Theme: Download Link for Grid images via JS

// Download image link. add_action( 'wp_footer', function() { ?> <script> /* Insert download links to all image grid images */ document.querySelectorAll( '.vcex-image-grid-entry-link' ).forEach( ( link ) => { const downloadLink = document.createElement( 'a' ); downloadLink.className = 'frandeprado-image-download-link'; downloadLink.setAttribute( 'href', link.getAttribute(…

Mehr Lesen
An den Anfang scrollen