This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Setup Question

#33556
Ernest MarcinkoErnest Marcinko
Keymaster

Thank you, this should be sufficient.

Try adding this code to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.

add_action('wp_footer', 'wp_footer_add_js_opener');
function wp_footer_add_js_opener() {
	?>
	<script>
	(function(){
		setTimeout(function() {
			document.querySelectorAll('[class*=asp_single_highlighted]').forEach(function(el){
				el.parentElement.click();
			})
		}, 2500);
	}())
	</script>
	<?php
}