I would like to change a single result URL from https://salarship.com/search/l-houston-tx/ to https://salarship.com/search/l-not-houston-tx/
I tried to implement this feature with asp_redirect_url, here is the code I use:
add_action(‘wp_footer’, ‘modify_search_url’);
function modify_search_url() {
?>
<script type=”text/javascript”>
WPD.Hooks.addFilter(‘asp_redirect_url’, ‘asp’, function(url){
return url.replace(
“/l-houston-tx/”,
“/l-not-houston-tx/”
));
}, 8);
</script>
<?php
}
However, I still don’t get any modifications on the search results. Did I do something wrong? It is not very clear in the documentation how to implement javascript Hooks and Javascript API.
Nathan