Forums Forums Search & Filter Pro Search is refreshing but not filtering

Tagged: ,

Viewing 7 posts - 1 through 7 (of 7 total)
  • Trevor
    #131195

    Are you able to send me a live link/URL to your search page so I can take a look?

    Tell me a search to do, and what results/change I SHOULD see (but obviously will not see).

    Anonymous
    #131294
    This reply has been marked as private.
    Trevor
    #131300

    You appear to be using a custom results.php file. If that is so, can you copy the contants of that file and then post that (as a reply on this thread) within code ticks (the backwards quote mark that is on the key normally to the left of the main keyboard ‘1’ key, one before the code and one after it).

    Anonymous
    #131311
    This reply has been marked as private.
    Trevor
    #131322

    what happens if you remove this line:

    <?php $loop = new WP_Query( array( 'post_type' => 'coaches' ) ); ?>
    

    Or disable it like this:

    <?php \\$loop = new WP_Query( array( 'post_type' => 'coaches' ) ); ?>
    

    and then change this line:

    while ( $loop->have_posts() ) : $loop->the_post(); 
    

    to this:

    while ( $query->have_posts() ) : $query->the_post();
    
    Anonymous
    #131328

    Removing and switching $loop > $query totally worked. Thanks so much!!

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