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

How to implement asp_redirect_url ?

Home Forums Product Support Forums Ajax Search Pro for WordPress Support How to implement asp_redirect_url ?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38162
    leroileleroile
    Participant

    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

    #38167
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    That is not the hook you are looking for. This knowledge base will help you with that.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.