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

Reply To: Trigger live search when clicked

#45420
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you very much for the details! Indeed, this should be doable with a small custom code snippet.

Try adding this code via the Code Snippets plugin or 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', 'asp_add_footer_script', 99999);
function asp_add_footer_script() {
	?>
	<script>
	jQuery(function($){
		$('input.orig').one('click', function(e){
			$(this).get(0).dispatchEvent(new Event('input'))
		});
	});
	</script>
	<?php
}

If you need help with this just let me know!