How to implement asp_redirect_url ?

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

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 1 year, 10 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38162
    leroile
    leroile
    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 Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

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

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.