Don’t show any results until filter is applied
Started by: christophW-2
in: Toolset Professional Support
4
19
4 years, 7 months ago
Christian Cox
Can ToolSet (with Relevanssi) search costom fields of a linked post?
Started by: peterv-5
in: Toolset Professional Support
2
3
4 years, 7 months ago
peterv-5
Split: Product price is not showing after search filter is used
Started by: Florian
in: Toolset Professional Support
2
6
4 years, 7 months ago
Waqar
Search and sorting filters are not working through AJAX after plugin updates
Started by: amjadM
in: Toolset Professional Support
2
4
4 years, 7 months ago
Waqar
View filter by shortcode attribute has stopped working
Started by: envista-imagen-s.l.M
in: Toolset Professional Support
Quick solution available
Problem: I have a View with a post relationship Query Filter set by a shortcode attribute. After updating, the Query Filter is not working as expected.
Solution: Remove the wpv-control-post-relationship filter shortcode from the View's Custom Search editor panel.
2
11
4 years, 7 months ago
envista-imagen-s.l.M
Text search only matching on title not working
Started by: jamesR-13
in: Toolset Professional Support
Quick solution available
Problem: I would like to search posts by title only, but it doesn't seem to be working with Relevanssi.
Solution: Remove the custom code that is breaking search queries.
3
9
4 years, 7 months ago
jamesR-13
I need help with changing the search sensitivity
Started by: BradH1338
in: Toolset Professional Support
3
8
4 years, 7 months ago
Waqar
用Relevanssi来对custom post type进行中文的文字搜索有点问题
Started by: ben
in: Toolset Professional Support
2
6
4 years, 7 months ago
Luo Yang
Need some help to display relations
Started by: riinA
in: Toolset Professional Support
2
7
4 years, 7 months ago
riinA
View filters aren't disabled on load, only after clicking a filter
Started by: kenR
in: Toolset Professional Support
2
21
4 years, 7 months ago
Shane
After filtering first product is hidden
Started by: Florian
in: Toolset Professional Support
2
17
4 years, 7 months ago
Florian
Search – do not show items before using filters
Started by: dzemalN
in: Toolset Professional Support
2
17
4 years, 7 months ago
dzemalN
Nested views with block editor
Started by: franzG-4
in: Toolset Professional Support
2
7
4 years, 7 months ago
franzG-4
View: custom field filter doesn’t keep post relationship filter when filtering
Started by: Zayne
in: Toolset Professional Support
Quick solution available
Problem:
The user is filtering a view using a relationship field and a URL param. After filtering using AJAX, the view loses the filter because the URL parameter is not preserved.
Solution:
To fix this, we need to add a hidden field that will keep the value of the URL param. This needs custom code such as:
add_filter( 'wpv_filter_end_filter_form', 'prefix_add_hidden_field_edition_id', 99, 3 );
function prefix_add_hidden_field_edition_id( $out, $view_settings, $view_id ) {
$views = array( 9286 );
if ( in_array( $view_id, $views) ) {
$edition_id = isset($_GET['edition_id']) ? $_GET['edition_id'] : '';
$out = '<input type="hidden" id="edition_id" name="edition_id" value="' . $edition_id . '" class="js-wpv-filter-trigger form-control" />' . $out;
}
return $out;
}
Relevant Documentation:
https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_end_filter_form
3
9
4 years, 7 months ago
Zayne
Add a link to a post title when using a many to many relationship.
Started by: JSG
in: Toolset Professional Support
2
7
4 years, 7 months ago
Christian Cox