Jeff Coen
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 |
---|---|---|---|---|---|
Five errors with CRED Frontend Editor after upgrading PHP
Started by: Jeff Coen in: Toolset Professional Support |
2 | 2 | 4 months, 2 weeks ago | ||
Displaying only the categories for a particular post type
Started by: Jeff Coen in: Toolset Professional Support |
2 | 2 | 6 months, 3 weeks ago | ||
What title to use for a column in CSV to import data from a custom taxonomy?
Started by: Jeff Coen in: Toolset Professional Support |
2 | 5 | 8 months, 2 weeks ago | ||
Filter via Select Menus not functioning properly
Started by: Jeff Coen in: Toolset Professional Support |
4 | 9 | 1 year, 11 months ago | ||
Getting search form to work using custom taxonomy in a view (Not Resolved)
Started by: Jeff Coen in: Toolset Professional Support |
2 | 3 | 1 year, 11 months ago | ||
Getting search form to work using custom taxonomy in a view
1
2
Started by: Jeff Coen in: Toolset Professional Support |
3 | 18 | 1 year, 11 months ago | ||
Parametric Search: Search from only one field instead of both fields.
Started by: Jeff Coen
in: Toolset Professional Support
Problem: Solution: if(isset($_GET['wpv_post_search']) && $_GET['wpv_post_search'] != '') { add_filter( 'wpv_filter_query', 'modify_search_func', 10, 3 ); function modify_search_func( $query_args, $settings, $view_id ) { if ( $view_id == 1303 ) { // your view ID unset($query_args['tax_query']); } return $query_args; }} ==> Please replace “1303” with your View ID. Relevant Documentation: |
2 | 6 | 7 years, 5 months ago | ||
Exculde one category from search se;ect menu
Started by: Jeff Coen in: Toolset Professional Support |
4 | 6 | 7 years, 5 months ago | ||
Select menu dropdown with no submit button on Custom Searches: Possible?
Started by: Jeff Coen
in: Toolset Professional Support
Problem: I would like to automatically submit my search form whenever someone selects an option in a select field. Solution: Add the following JavaScript code to Layouts CSS and JS (if you're using Layouts for the page) or to a script file: jQuery(document).on('ready', function() { jQuery('.js-wpv-filter-form-1303 select[name=wpv-category].js-wpv-filter-trigger, .js-wpv-filter-form-1303-TCPID1288 select[name=wpv-category].js-wpv-filter-trigger').on('change', function(e) { $form = jQuery(e.target).closest('form'); $form.submit(); }); }); Modify the '1303' and 'TCPID1288' parts of the selector to match your form filter elements. |
2 | 10 | 7 years, 5 months ago | ||
Can’t import CSV using CSV Importer or CSV Importer Improved
Started by: Jeff Coen
in: Toolset Professional Support
Problem: Solution: This was using the CSV Importer plugin. Relevant Documentation: |
2 | 8 | 7 years, 5 months ago | ||
Insert a View
Started by: Jeff Coen
in: Toolset Professional Support
Problem: Solution: With the API you can render the whole output of the View programmatically: |
2 | 3 | 7 years, 5 months ago | ||
Sort Table by Taxonomy
Started by: Jeff Coen
in: Toolset Professional Support
Problem: Solution: You cannot sort by Taxonomies. This is not possible with that sort of setup. A future update will also hold a warning about this in the GUI, there is nothing we can do here, unfortunately. |
3 | 4 | 7 years, 5 months ago |