martijnH
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Use comma in numberfield in wp-admin
Commencé par : martijnH in: Toolset Professional Support |
2 | 3 | Il y a 2 années et 3 mois | ||
W3C error on distance filter
Commencé par : martijnH in: Toolset Professional Support |
2 | 5 | Il y a 2 années et 5 mois | ||
Follow-up accessibility problem with distance filter
Commencé par : martijnH in: Toolset Professional Support |
2 | 3 | Il y a 2 années et 6 mois | ||
Accessibility problem with distance filter
Commencé par : martijnH in: Toolset Professional Support |
2 | 3 | Il y a 2 années et 6 mois | ||
Multiple close buttons in Toolset Blocks slider Lightbox
Commencé par : martijnH in: Toolset Professional Support |
2 | 2 | Il y a 2 années et 11 mois | ||
other ticket is closed
Commencé par : martijnH in: Toolset Professional Support |
2 | 9 | Il y a 3 années | ||
Random and invalid and tags.
Commencé par : martijnH in: Toolset Professional Support |
2 | 6 | Il y a 3 années et 2 mois | ||
Orders publicly visible
Commencé par : martijnH in: Toolset Professional Support |
2 | 3 | Il y a 3 années et 4 mois | ||
Image field in repeating fields group not saving
Commencé par : martijnH
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | Il y a 4 années et 5 mois | ||
Conflict official Font Awesome plugin (4.0.0-rc20) and Toolset
Commencé par : martijnH in: Toolset Professional Support |
3 | 6 | Il y a 4 années et 6 mois | ||
Custom search view showing expected results
Commencé par : martijnH in: Toolset Professional Support |
2 | 3 | Il y a 4 années et 11 mois | ||
Error on saving a view "Synchronous XMLHttpRequest on the main thread…"
Commencé par : martijnH in: Toolset Professional Support |
1 | 2 | Il y a 5 années et 1 mois | ||
Custom predefined image size not used
Commencé par : martijnH in: Chat Support |
1 | 2 | Il y a 5 années et 2 mois | ||
Theme options not shown in content template
Commencé par : martijnH in: Toolset Professional Support |
2 | 6 | Il y a 5 années et 8 mois | ||
View with child post type: hide posts where parent is private/concept (part 3)
Commencé par : martijnH
in: Toolset Professional Support
Problem: I have a post relationship between two post types. I want to show a View of child posts where the parent post is not private. Solution: Use custom code to test each child post's parent. Private parent posts will not be returned for any guest Users. Also test the post status, so logged-in Users will not see child posts of their own private parent posts. add_filter('wpv_filter_query', 'ts_parent_not_private_func', 10, 3); function ts_parent_not_private_func($query, $view_settings, $view_id) { $views = array( 16813, 16403 ); // only filter these views if( in_array( $view_id, $views ) ) { $child_ids = array(); // we will push IDs here if the parent is not found, or private $children_args = array( 'post_type' => 'training-datum', 'posts_per_page' => '-1', 'post_status' => 'publish', // you may want to add more filters here to improve the performance of this query ); $children = new WP_Query($children_args); foreach( $children->posts as $child ){ $parent = toolset_get_related_post( $child, 'training_training-datum', 'parent' ); // if there is no parent or the parent is private, push this ID into the exclusion array if( !$parent || get_post_status($parent) == 'private' ){ array_push( $child_ids, $child->ID ); } } $query['post__not_in'] = isset( $query['post__not_in'] ) ? $query['post__not_in'] : array(); $query['post__not_in'] = array_merge($query['post__not_in'], $child_ids ); } return $query; } Relevant Documentation: |
2 | 7 | Il y a 6 années et 1 mois |