function gtag_report_conversion(url) {
	var callback = function () {
		if (typeof(url) != 'undefined') { window.location = url; }
	};
	gtag('event', 'conversion', { 'send_to': 'AW-.../...', 'transaction_id': '', 'event_callback': callback });
	return false;
}
document.addEventListener( 'wpcf7mailsent', function( event ) {
	gtag_report_conversion('<?php echo get_the_permalink(); ?>');
}, false );
if (document.addEventListener) {
  document.addEventListener('contextmenu', function(e) {
	e.preventDefault();
  }, false);
} else {
  document.attachEvent('oncontextmenu', function() {
	window.event.returnValue = false;
  });
}

Als JS Datei `sameheight.js` speichern und einbinden:

jQuery(document).ready(function() { sameheightbox(); });
jQuery(window).resize(function() { sameheightbox(); });

function sameheightbox() {
	var highestBox = 0;
	jQuery('.sameheight').each(function(){
		if(jQuery(this).height() > highestBox) {
			highestBox = jQuery(this).height();
		}
	});
	jQuery('.sameheight').height(highestBox);
}

Einbinden z.B. mit:

add_action( 'wp_enqueue_scripts', 'wuk_sameheight', 5);
function wuk_sameheight() {
	wp_enqueue_script( 'sameheight-js', get_stylesheet_directory_uri() . '/sameheight.js', array( 'jquery' ) );
}

Elemente welche die gleiche Höhe erhalten sollen dann die CSS Klasse sameheight geben.