Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Disable result link (click action) › Reply To: Disable result link (click action)
January 15, 2025 at 10:04 am
#52496
Keymaster
Okay. Let’s try to force all click actions off via this custom code:
add_action(
'wp_footer',
function () {
?>
<script>
document.querySelectorAll(".asp_main_container").forEach((el) => {
el.addEventListener("asp_results_show", (event) => {
console.log('hey');
setTimeout(()=>DoMini(".asp_r .item").off(), 10);
});
});
</script>
<?php
},
9999
);