Jim
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 |
---|---|---|---|---|---|
Layout removed from post type
Started by: Jim in: Toolset Professional Support |
3 | 10 | 3 years, 2 months ago | ||
tags are not shown in view
1
2
Started by: Jim in: Toolset Professional Support |
3 | 17 | 3 years, 2 months ago | ||
View filter to filter on child taxonomy terms
1
2
Started by: Jim in: Toolset Professional Support |
2 | 20 | 3 years, 3 months ago | ||
Show only top taxonomy terms in view (no child terms)
Started by: Jim in: Toolset Professional Support |
2 | 7 | 3 years, 3 months ago | ||
Sorting order of relationship post type items
1
2
Started by: Jim in: Toolset Professional Support |
5 | 24 | 3 years, 8 months ago | ||
Custom checkboxes field not available for filtering in views
Started by: Jim in: Toolset Professional Support |
2 | 9 | 4 years, 6 months ago | ||
views: need to filter on the same field for the query and for search
Started by: Jim
in: Toolset Professional Support
Problem: Setup custom field filter by constant value + URL parameter value. Solution: When there isn't URL parameter passing to view, it will output all results by default, and it conducts the problem, you can consider the custom codes: Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_query |
2 | 8 | 4 years, 7 months ago | ||
View query filter multiple conditions for the same field
Started by: Jim in: Toolset Professional Support |
2 | 7 | 4 years, 7 months ago | ||
Read more link on Exerpts not showing when there is no body text
Started by: Jim in: Toolset Professional Support |
4 | 13 | 4 years, 8 months ago | ||
Display Taxonomy Terms Hierarchically
1
2
Started by: Jim
in: Toolset Professional Support
Problem: Solution: Then you can insert the Parent View in a page and will see all terms output in the hierarchically correct order. |
2 | 22 | 4 years, 8 months ago | ||
custom post type using header footer layout is loaded inside theme content block
Started by: Jim in: Toolset Professional Support |
2 | 2 | 5 years, 5 months ago | ||
Only access to users own posts
Started by: Jim
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know how to allow their users to access only their own posts. Solution: This can be done by following the instructions in the link below. |
2 | 8 | 5 years, 5 months ago | ||
create a cpt search result page
Started by: Jim in: Toolset Professional Support |
2 | 7 | 5 years, 11 months ago | ||
get fiels array from custom post type
1
2
Started by: Jim in: Toolset Professional Support |
3 | 17 | 5 years, 11 months ago | ||
change wpv-conditions to css class
1
2
Started by: Jim
in: Toolset Professional Support
Problem: Check if a field is empty using custom coding. Solution: This can be done by adding the following custom shortcode to your functions.php file. // Add Shortcode function wp_check_field( $atts ) { // Attributes $atts = shortcode_atts( array( 'id' => '', 'field' => '', ), $atts ); $field = get_post_meta($atts['id'],$atts['field']); $class = ''; if(!empty($field[0])){ $class = ''; return; } return $class; } add_shortcode( 'wp_check_field', 'wp_check_field' ); You can get the specific field information by doing this [wp_get_field id='[wpv-post-id]' field='wpcf-my-field'] |
3 | 18 | 6 years, 1 month ago |