Skip Navigation

[Résolu] View with no taxonomy Filter applied should show no results

Ce fil est résolu. Voici une description du problème et la solution proposée.

Problem: When the User visits my search form and no taxonomy filter is applied, I would like the View to return "no results". It currently returns all results.

Solution: Use the wpv_filter_query_post_process filter to drop all results when there is no taxonomy query provided in the search.

add_filter( 'wpv_filter_query_post_process', 'wpv_empty_thema_no_results', 10, 3 );
function wpv_empty_thema_no_results( $query, $view_settings, $view_id ) {
  if( $view_id == 12345 ){
    if( sizeof( $query->tax_query->queries ) < 1 ){
      $query->posts = array();
      $query->found_posts = 0;
      $query->post_count = 0;
    }
  }
 
  return $query;
}

Replace 12345 with the ID of your View.

Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query_post_process

This support ticket is created Il y a 6 années et 9 mois. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 8:00 – 12:00 - -
13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 13:00 – 17:00 - -

Supporter timezone: America/New_York (GMT-04:00)

This topic contains 8 réponses, has 2 voix.

Last updated by Dido Il y a 6 années et 8 mois.

Assisted by: Christian Cox.

Auteur
Publications
#552616

I am trying to: make a filterable search page

Link to my site: hidden link

I expected to see: only the search

Instead, I got: all the posts

In google console I get this message:
XMLHttpRequest cannot load hidden link. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'hidden link' is therefore not allowed access.

It is a multi-site.

#552785
Screen Shot 2017-07-25 at 5.48.00 PM.png

Hi, can you tell me how this View is inserted into the page? If you insert a View that includes a custom search filter using the "Fields and Views" button in the Page editor, you can choose to display only the filter, only the results, or both. Please see the attached screenshot. If you insert a View Cell in a Layout, this option is not available.

In google console I get this message:
XMLHttpRequest cannot load
hidden link. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'hidden link' is therefore not allowed access.
This seems like a separate issue that I won't be able to address in a simple sentence or two, but the main problem I see is that your multisite settings are pointing to a different URL than the link you provided. They are currently pointing to hidden link, and this is causing several problems on your site. The server at blogs.boekencentrum.nl is restricting access to those assets. If you have additional questions about this, please open a new ticket so we can investigate this issue more thoroughly. Thank you!

#553460

hi Christian,

I used the first inserting code: [wpv-view name="zoeken-op-tag"]
is this the right way?

The Ajax options for updating the page are also not working. When I use these, nothing is happening when I hit the search button.

#553600

I expected to see: only the search
...and...
The Ajax options for updating the page are also not working.
Okay I was under the impression you wanted to show the search and results on separate pages, but I believe I understand a bit better now. You want to show only the search filters when the page first loads. Then when the user changes search inputs, you want the results to appear using AJAX.

1. Do I understand you correctly?
2. What type of filter is this select - a custom field, or a taxonomy?
3. Please share a screenshot showing the AJAX settings in the View Editor. Open the "Advanced Settings" area so I can see this as well.

#553614
loop.jpg
custom posts.jpg
filter.jpg
behaviour.png

I will explain what I like on this page.
I want a blank page, with only the selectbox and the search button.
After choosing an option and hitting the button, I want to show up all the posts (4 types) with the same tag.

I would really like to show the topics in 4 separted lists, according to the posttype, if possible?
I changed my view on the same options as in the screenshot. So you will notice that nothing is working right now.

#553658
Screen Shot 2017-07-27 at 4.32.05 PM.png

Hi, can you take a look at the screenshot? I've tried to submit the search form several times, and each time a new error appears. These errors are preventing Views' JavaScript from updating the search results as expected. I can't troubleshoot effectively until these errors are resolved. Please let me know when you are ready to continue.

#555854

Hi Christian,

I fixed the problem with the Ajax file.

#556139

Okay thank you. If you want the empty filter to return "No results found", you can use the wpv_filter_query_post_process filter to drop any results from the View. Here's an example:

add_filter( 'wpv_filter_query_post_process', 'wpv_empty_thema_no_results', 10, 3 );
function wpv_empty_thema_no_results( $query, $view_settings, $view_id ) {
  if( $view_id == 12345 ){
    if( sizeof( $query->tax_query->queries ) < 1 ){
      $query->posts = array();
      $query->found_posts = 0;
      $query->post_count = 0;
    }
  }

  return $query;
}

Replace '12345' with the ID of your View. This will remove any results from the list when no taxonomy term is selected in a View.

#557374

Ok, I will try this.
thank you for this answer.

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.