|
Show only available options for each input – not working correctly
Started by: Alex W
in: Toolset Professional Support
Quick solution available
Problem:
Show only available options for each input is not working correctly in a View.
Solution:
Upgraded WooCommerce Views and re-created the filter in the View and issue is resolved.
https://toolset.com/account/downloads/
|
|
2 |
3 |
7 years, 3 months ago
Alex W
|
|
display dropdown box (City of Country) when a certain Country is selected
Started by: Bernadette Docuyanan
in: Toolset Professional Support
Quick solution available
|
|
2 |
4 |
7 years, 3 months ago
Bernadette Docuyanan
|
|
Remove CSS from Search & Reset filter button
Started by: Charles
in: Toolset Professional Support
Quick solution available
Problem:
The issue here is that the Search and Reset filter buttons on the customers view was getting some default styling and he wanted to remove those styling.
Solution:
Unfortunately the default styling was being produced by the theme as views does not include any default styling for these buttons.
It is advised to check your theme's documentation to see what default styles will be applied to buttons
|
|
2 |
3 |
7 years, 3 months ago
Charles
|
|
Conditional display of filter based on another filter
Started by: romanB-3
in: Toolset Professional Support
|
|
2 |
4 |
7 years, 3 months ago
Christian Cox
|
|
After update pluging AJAx not working
Started by: ahmedA-7
in: Toolset Professional Support
|
|
1 |
2 |
7 years, 3 months ago
ahmedA-7
|
|
Output filters of a view to a CRED form
Started by: romanB-3
in: Toolset Professional Support
Quick solution available
Problem: I would like to use the cred_save_data hook to capture the selected filters in a View.
Solution: Use the urlparam attribute on a CRED field to set the value of that field using a URL parameter. This only works on page load, and will not work with an AJAX update. You can write custom JavaScript and trigger it on certain events, like pagination and search results updates. The settings for these events can be found in the Advanced settings in your View editor.
Relevant Documentation: https://toolset.com/documentation/user-guides/cred-shortcodes/#cred_field
|
|
2 |
5 |
7 years, 3 months ago
romanB-3
|
|
How much will a cache plugin help server load on a View/Custom Search site?
Started by: mikeC-5
in: Toolset Professional Support
Quick solution available
Problem: Will a caching plugin help reduce the server load of my popular site?
Solution: Caching plugins can help in some but not all cases. You should run your own tests to determine the viability of caching your site. The best source of information about a caching plugin or system is that plugin's support forums. You can search other tickets on this site by using a Google search like "site:wp-types.com W3TC" for information from other plugin users. It's not possible for me to determine how much server load you will save, because this depends on many variables like your host server environment, the content of each post, the number of database queries, etc. I can only give you relative terms, and normally a cached site uses fewer server resources than a dynamic site.
Relevant Documentation:
https://toolset.com/faq/working-with-caching-plugins/
https://toolset.com/documentation/programmer-reference/toolset-resource-directories-for-cdn-upload/
|
|
2 |
7 |
7 years, 3 months ago
mikeC-5
|
|
How to add class to wpv-sort-order & wpv-sort-order
Started by: chuckH
in: Toolset Professional Support
|
|
2 |
5 |
7 years, 3 months ago
chuckH
|
|
Filter child post based on parent taxonomy – but not grouped by parent post
Started by: Marco Bolleter
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 4 months ago
Beda
|
|
How to filter by the first character of a custom field?
Started by: pattyS-2
in: Toolset Professional Support
Quick solution available
Problem: I would like to allow my users to filter a View by the first letter of a custom field. For example, I want the user to be able to filter with "R" and show all results where the custom field value begins with "R".
Solution: There's no way to filter by the nth character in a field value. The best way to do this is to use two separate custom fields. The first custom field will contain the complete information, and the second custom field will contain only the first character of that information. You can choose to manually add this single character during the post creation workflow, or you can choose to write some PHP code that will handle it automatically upon saving a post.
Then, filter your View by the single-letter custom field to achieve the desired filter results.
Client's example PHP code to set this single character field automatically when a post is saved:
add_action('save_post', 'schreib_alf_v_sortname_upd', 100);
function schreib_alf_v_sortname_upd($id){
// only do this for reports post type
if (get_post_type($id) != 'reports')
return;
// get the lowercase first letter of the full field value
$a = lcfirst(substr(get_post_meta($id, 'wpcf-sortname', true), 0, 1));
// set the correct value of the single character field
update_post_meta($id, 'wpcf-alf', $a);
}
Relevant Documentation:
https://codex.wordpress.org/Plugin_API/Action_Reference/save_post
https://codex.wordpress.org/Function_Reference/update_post_meta
|
|
2 |
7 |
7 years, 4 months ago
pattyS-2
|
|
how to display taxonomy as radio button image filter
Started by: Kristen Estes
in: Toolset Professional Support
Quick solution available
Problem:
How to display taxonomy terms as radio button image filter
Solution:
You need to create the custom shortcode to display taxonomy terms as radio button image and add this shortcode to the view's filter section.
You can find the proposed solution with reply here
Relevant Documentation:
https://toolset.com/documentation/user-guides/front-page-filters/
|
|
2 |
11 |
7 years, 4 months ago
Kristen Estes
|
|
Filter is not updating
Started by: paulw-2
in: Toolset Professional Support
|
|
2 |
6 |
7 years, 4 months ago
Shane
|
|
search box for search limited to 3 taxonomies
Started by: davidm-13
in: Toolset Professional Support
|
|
2 |
6 |
7 years, 4 months ago
Christian Cox
|
|
DISPLAY FILTERS AND RESULTS IN DIFFERENT PLACES
Started by: Kenneth Horn
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 4 months ago
Luo Yang
|
|
Can I filter one custom type Post out with another?
Started by: paulineS
in: Types Community Support
|
|
2 |
6 |
7 years, 4 months ago
Christian Cox
|