Skip Navigation

[Resolved] Update results of second view based on URL parameters of first view filter

This support ticket is created 3 years, 11 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.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

Tagged: 

This topic contains 4 replies, has 2 voices.

Last updated by peterV-10 3 years, 11 months ago.

Assisted by: Shane.

Author
Posts
#1628683
toolset-question.jpg

Setting:
I have 2 views on a page, both with the same filter ("All / Culture / Offices / Residential"). Only the filter of the FIRST view is visible on the page.
The first view shows the 3 first results (projects).
The second view also shows the projects, but skips the first three.
With NO filter selected, all is okay (first three are displayed in View1, the rest is displayed in View2)

What I want to achieve:
When I check eg. "Culture", first 3 Culture Projects should be displayed in View1 (is ok), and the rest of Culture Projects should be displayed in View2.
(PS. I want to keep using "Update Ajax results when an value changes")

My question: Isn't it possible to achieve this using JS hook "js_event_wpv_parametric_search_results_updated"?
I implemented this hook in my first View successfully (every time I change a value, I get a console message "Okay").
But: I don't know how to refresh the results of View2, based on the parametric URL search.

#1629191

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Peter,

Thanks for getting in touch.
Unfortunately no it wont be possible to do with AJAX enabled.

You will either need to have your view having it's own set of filters or you will need to do a full page refresh.

This is because when you're using AJAX the filter will target the view directly.

Thanks,
Shane

#1629225
Werk_-_JUXTA.jpg

Okay - no AJAX, I understand.
Maybe 2 more questions then:
(1) How can I induce a full page refresh just by clicking a filter value of View1 without the need of a "Filter" or "Start search" button?
(2) And how can I change the results of View2 based on the filter values from View1?
Thank you, Shane!

#1629243

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Peter,

Given that Ajax won't be used you will either have to have a submit button added or you can use some JS to submit the form when a value is selected.

Now this Javascript will need to detect when each field is selected. This would require custom coding and this is out of the scope of our support forum to assist with but I can provide some resource for you to use.
https://stackoverflow.com/questions/18135420/jquery-javascript-submit-form-when-checkbox-is-clicked

(2) And how can I change the results of View2 based on the filter values from View1?

How views function is that they are filtered by a URL parameter, so you will need to add your filters to the 2nd view and set each of those filters to be filtered by a URL parameter.

The URL parameter must match the parameters that the first view is submitting in the URL.
https://toolset.com/documentation/user-guides/views/filtering-views-by-custom-fields/#source-for-compare-value

Please let me know if this helps or if further clarification is needed on this.

Thanks,
Shane

#1629307

My issue is resolved now.
The code that did the trick was this:

jQuery(document).on('ready', function() {
  jQuery('.js-wpv-filter-form-340 input[name=wpv-category].js-wpv-filter-trigger').on('change', function(e) {
    $form = jQuery(e.target).closest('form');
    $form.submit();
  });
});

Cheers,
Peter

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