Jim
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Layout removed from post type
Gestartet von: Jim in: Toolset Professional Support |
3 | 10 | vor 3 Jahren, 2 Monaten | ||
tags are not shown in view
1
2
Gestartet von: Jim in: Toolset Professional Support |
3 | 17 | vor 3 Jahren, 3 Monaten | ||
View filter to filter on child taxonomy terms
1
2
Gestartet von: Jim in: Toolset Professional Support |
2 | 20 | vor 3 Jahren, 3 Monaten | ||
Show only top taxonomy terms in view (no child terms)
Gestartet von: Jim in: Toolset Professional Support |
2 | 7 | vor 3 Jahren, 3 Monaten | ||
Sorting order of relationship post type items
1
2
Gestartet von: Jim in: Toolset Professional Support |
5 | 24 | vor 3 Jahren, 8 Monaten | ||
Custom checkboxes field not available for filtering in views
Gestartet von: Jim in: Toolset Professional Support |
2 | 9 | vor 4 Jahren, 6 Monaten | ||
views: need to filter on the same field for the query and for search
Gestartet von: 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 | vor 4 Jahren, 7 Monaten | ||
View query filter multiple conditions for the same field
Gestartet von: Jim in: Toolset Professional Support |
2 | 7 | vor 4 Jahren, 7 Monaten | ||
Read more link on Exerpts not showing when there is no body text
Gestartet von: Jim in: Toolset Professional Support |
4 | 13 | vor 4 Jahren, 9 Monaten | ||
Display Taxonomy Terms Hierarchically
1
2
Gestartet von: 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 | vor 4 Jahren, 9 Monaten | ||
custom post type using header footer layout is loaded inside theme content block
Gestartet von: Jim in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 5 Monaten | ||
Only access to users own posts
Gestartet von: 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 | vor 5 Jahren, 5 Monaten | ||
create a cpt search result page
Gestartet von: Jim in: Toolset Professional Support |
2 | 7 | vor 5 Jahren, 11 Monaten | ||
get fiels array from custom post type
1
2
Gestartet von: Jim in: Toolset Professional Support |
3 | 17 | vor 5 Jahren, 11 Monaten | ||
change wpv-conditions to css class
1
2
Gestartet von: 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 | vor 6 Jahren, 1 Monat |