Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Trigger live search when clicked › Reply To: Trigger live search when clicked
September 18, 2023 at 2:25 pm
#45420
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!