• Resolved jhonnygwatson

    (@jhonnygwatson)


    Hi,

    I want to fetch users geo location and sort the filtered result by distance. Is it possible to customise the sort?

    Best
    Jhonny

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author stepasyuk

    (@stepasyuk)

    Yes, it is possible but of course you have to be familiar with development.
    There are hooks

    do_action( 'wpc_filtered_query_end', $wp_query );

    that fires on $wp_query after adding filtering parameters to it. And you can add your own sorting parameter to the $wp_query.
    You can also use example that uses this hook in the plugin to catch orderby parameter for your custom sorting code.

    Thread Starter jhonnygwatson

    (@jhonnygwatson)

    Perfect. Thanks a lot!

    Plugin Author stepasyuk

    (@stepasyuk)

    @jhonnygwatson you are welcome!

    I would be thankful for a review of the plugin here on www.remarpro.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom sort’ is closed to new replies.