BillD
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Custom Search structure
Started by: BillD
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
|
3 | 15 | 3 years, 4 months ago | |
Calling a shortcode
Started by: BillD in: Toolset Professional Support |
|
2 | 16 | 3 years, 4 months ago | |
“view not found”.
Started by: BillD in: Toolset Professional Support |
|
2 | 16 | 3 years, 4 months ago | |
Split: Highlighting search results text – Relevanssi-generated excerpts – Space issue
Started by: BillD in: Toolset Professional Support |
|
2 | 6 | 3 years, 5 months ago | |
Highlighting search results text – Relevanssi-generated excerpts
1
2
Started by: BillD in: Toolset Professional Support |
|
2 | 26 | 3 years, 5 months ago | |
empty search term shows all posts
Started by: BillD in: Toolset Professional Support |
|
2 | 7 | 4 years, 11 months ago | |
Temporary registration of 2 sites for 1 month
Started by: BillD
in: Toolset Professional Support
Problem: I would like to temporarily register 2 sites while I work on a site migration, but my license only allows 1 site. Solution: An additional license is not required for a development environment. The software will continue to work as expected without being registered, but you will not be able to use the automatic updater to get the latest plugin versions. You can install the plugins manually after downloading them from https://toolset.com/account/downloads |
|
2 | 3 | 5 years, 1 month ago | |
Custom Search results display (no posts) until the search
1
2
Started by: BillD
in: Toolset Professional Support
Problem: In this ticket the user wanted to start out with a blank results page when no search has yet been performed. Solution: This can be achieved by using the hook below. Add the following to your toolset custom functions in Toolset -> Settings -> Custom Code. add_filter( 'wpv_filter_query', 'show_empty_results_default_func', 10,2 ); function show_empty_results_default_func( $query_args, $setting ) { if($setting['view_id'] == 9999){ if( !isset($_GET['wpv_view_count'])){ $query_args['post__in'] = array(0); } } return $query_args; } Change the '9999' to the ID of your view and this should cause your view to start with an empty search page. |
|
2 | 17 | 5 years, 5 months ago |