Jim
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Layout removed from post type
Iniciado por: Jim en: Toolset Professional Support |
|
3 | 10 | hace 3 años, 5 meses | |
tags are not shown in view
1
2
Iniciado por: Jim en: Toolset Professional Support |
|
3 | 17 | hace 3 años, 6 meses | |
View filter to filter on child taxonomy terms
1
2
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 20 | hace 3 años, 6 meses | |
Show only top taxonomy terms in view (no child terms)
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 7 | hace 3 años, 6 meses | |
Sorting order of relationship post type items
1
2
Iniciado por: Jim en: Toolset Professional Support |
|
5 | 24 | hace 3 años, 11 meses | |
Custom checkboxes field not available for filtering in views
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 9 | hace 4 años, 9 meses | |
views: need to filter on the same field for the query and for search
Iniciado por: Jim
en: 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 | hace 4 años, 10 meses | |
View query filter multiple conditions for the same field
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 7 | hace 4 años, 10 meses | |
Read more link on Exerpts not showing when there is no body text
Iniciado por: Jim en: Toolset Professional Support |
|
4 | 13 | hace 4 años, 12 meses | |
Display Taxonomy Terms Hierarchically
1
2
Iniciado por: Jim
en: 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 | hace 4 años, 12 meses | |
custom post type using header footer layout is loaded inside theme content block
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 2 | hace 5 años, 8 meses | |
Only access to users own posts
Iniciado por: Jim
en: 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 | hace 5 años, 8 meses | |
create a cpt search result page
Iniciado por: Jim en: Toolset Professional Support |
|
2 | 7 | hace 6 años, 2 meses | |
get fiels array from custom post type
1
2
Iniciado por: Jim en: Toolset Professional Support |
|
3 | 17 | hace 6 años, 2 meses | |
change wpv-conditions to css class
1
2
Iniciado por: Jim
en: 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 | hace 6 años, 4 meses |