Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Cliff Rubin

Forum Replies Created

Viewing 3 posts - 11 through 13 (of 13 total)
  • Cliff Rubin in reply to:
    How to change search results sort order
    #270548
    This reply has been marked as private.
    Cliff Rubin in reply to:
    How to change search results sort order
    #270542
    This reply has been marked as private.
    Cliff Rubin in reply to:
    How to change search results sort order
    #270369

    Thanks, but my programmer can’t quite figure out what you meant here. Here’s the code we used to sort the results and it works on other pages but not with your search results.

    add_action( ‘pre_get_posts’, ‘wpse183601_filter_category_query’ );
    function wpse183601_filter_category_query( $query ) {
    if( is_tax() && !is_admin() && $query->is_main_query() ) {
    $query->set( ‘orderby’,’meta_value’ );
    $query->set( ‘meta_key’,’last_name’ );
    $query->set( ‘order’,’ASC’ );
    }
    }

    Can you please let me know how to get the above to work on your results pages? Thank you so much for your help.

Viewing 3 posts - 11 through 13 (of 13 total)