Skip Navigation

[Resolved] “No initial Results” in View is not working

This thread is resolved. Here is a description of the problem and solution.

Problem: I would like to show no initial results in my View, but the code snippet doesn't seem to be working correctly. I have one Query Filter predefined.

Solution: You would have to modify the custom code to account for that one Query Filter. The following modification tests the number of Query Filters, and only shows results if the User has selected another filter on the front-end:

add_filter( 'wpv_filter_query_post_process', 'tssnippet_no_initial_results_one_pre', 10, 3 );
function tssnippet_no_initial_results_one_pre( $query_results, $view_settings, $view_id ) {
 
    $target_views = array( 4407 );
 
    if ( ! in_array( $view_id, $target_views ) ) {
        return $query_results;
    }
 
    // if there is only the one predefined custom field filter plus the relation, drop all results
    if (
        sizeof($query_results->query['meta_query']) == 2
        && ! isset( $query_results->query['tax_query'] )
        && ! isset( $query_results->query['s'] )
    ) {
        $query_results->posts = array();
        $query_results->post_count = 0;
        $query_results->found_posts = 0;
    }
 
    return $query_results;
}

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

This support ticket is created 4 years, 5 months ago. 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 10 replies, has 2 voices.

Last updated by FelipeP5703 4 years, 4 months ago.

Assisted by: Christian Cox.

Author
Posts
#1390119
no_results2.jpg
no_results.jpg

I am trying to: I followed this instruction - https://toolset.com/documentation/adding-custom-code/show-no-initial-results-for-views-custom-searches/

As you can see on the screenshots I believe I have setup correctly.

Link to a page where the issue can be seen: hidden link

I expected to see: No results before selecting a filter

Instead, I got: All results

Maybe because my filter is already selected as custom field "Sessao" 1? If so, how do I still not show results for this page before the user selects another field?

So I'm clear, I'm creating two pages, one Terapeuta and another Massagista. Both are custom field option of Sessao. Thus in page Terapeuta, the custom field Sessao is already selected automatically because I need to only show those custom posts, but I did not want to show results before the user had a chance to choose another field.

How can I do that, please?

#1390589

Maybe because my filter is already selected as custom field "Sessao" 1?
Yes, this is exactly right. The custom code provided in this snippet works by testing to see if any filters currently exist. In your case, a filter exists even before the User selects any other filters on the front-end, so results are displayed right away.

If so, how do I still not show results for this page before the user selects another field?
In this case, the code isn't simple because the meta_query is already set. If you don't plan to include any other predefined custom field filters, you could probably test the size of that meta_query array:

add_filter( 'wpv_filter_query_post_process', 'tssnippet_no_initial_results_one_pre', 10, 3 );
function tssnippet_no_initial_results_one_pre( $query_results, $view_settings, $view_id ) {

    $target_views = array( 4407 );

    if ( ! in_array( $view_id, $target_views ) ) {
        return $query_results;
    }

    // if there is only the one predefined custom field filter plus the relation, drop all results
    if (
        sizeof($query_results->query['meta_query']) == 2
        && ! isset( $query_results->query['tax_query'] )
        && ! isset( $query_results->query['s'] )
    ) {
        $query_results->posts = array();
        $query_results->post_count = 0;
        $query_results->found_posts = 0;
    }

    return $query_results;
}
#1390597
layout2.jpg
layout.jpg

Christian,

Thanks for the code, it works great, but it breaks the layout for some reason. See attached screenshots. Layout is what I want, and Layout2 is the outcome of using the code above.

#1390649
Screen Shot 2019-11-24 at 3.40.59 PM.png
Screen Shot 2019-11-24 at 3.39.42 PM.png

The CSS code in the Loop Template's CSS panel is not injected into the page for some reason I don't completely understand. My guess is it has something to do with the JavaScript error in the console, but I'm not sure. Can you resolve the Javascript error?

Uncaught TypeError: $ is not a function
    at (index):5792

Use 'jQuery' instead of '$' for best results.

#1392791

Unfortunately I cannot fix that since I hired a programmer to create a function for me and he is not answering my messages. The function he created was to delete the images from the forms when clicking the X or the trash button on the post form images. That way it would permanently delete the images, causing less clutter of the HD.

#1392865

Do you know where the JavaScript is added? If you show me, I can temporarily disable the problem code to see if that solves the problem.

I looked in the Custom CSS & JS area, but didn't find it. I looked in the View editor JS panels but didn't find it there either. I looked in the theme's JS files but didn't find it there. I looked through the Toolset custom code snippets but didn't find it. Looked through all the Post and User Forms but didn't find it. Can you show me?

#1393879

Christian,

It looks like it's from in the Theme Editor -> Theme Footer - hidden link
It looks similar or identical to the error - hidden link

#1397119

Got it, thanks. I made the necessary adjustment in this script to prevent the jQuery issue. Please note that I made one change in the footer.php file. I changed line 34. The original code:

$(document).ready(function(){

The updated code:

jQuery(document).ready(function($){

Circular images are displayed now, and no JavaScript errors are logged. Can you take a look and let me know your thoughts?

#1397945

Christian,

Thanks for fixing the jQuery. I really appreciate it!

The circular images were showing because I had deactivated the code. I now activated and the display is squared again. Look: hidden link

#1397953

Okay check now, I moved the CSS from the Loop Content Template's CSS panel into the View's CSS panel.

#1398053

Christian, thank you so much you have done it again! My issue is resolved now. Thank you!

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