Brad Tipper
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 |
---|---|---|---|---|---|
Ajax sorting not working on tables
Started by: Brad Tipper
in: Toolset Professional Support
Problem: Solution: |
3 | 5 | 6 years, 5 months ago | ||
Get date of child post as set by post relationship in functions php
Started by: Brad Tipper in: Toolset Professional Support |
2 | 4 | 6 years, 5 months ago | ||
Automatically set post parent in post form from URL parameter
1
2
Started by: Brad Tipper
in: Toolset Professional Support
Problem: Solution: For example: add_action('cred_save_data','func_custom_post_title',15,2); function func_custom_post_title($post_id,$form_data) { if ($form_data['id']==243) { toolset_connect_posts('boat-safety-check',$_POST['@boat-safety-check_parent'], $post_id); } } You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
3 | 28 | 6 years, 5 months ago | ||
Create dynamic dropdown of terms from custom taxonomy on CRED user forms
Started by: Brad Tipper in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
Need help building a view to display page heirachy
1
2
Started by: Brad Tipper in: Toolset Professional Support |
2 | 16 | 6 years, 6 months ago | ||
Need some advice on best setup for site with post relationships
Started by: Brad Tipper
in: Toolset Professional Support
Problem: Solution: Read more about what's involved here: https://toolset.com/documentation/post-relationships/ |
2 | 5 | 6 years, 8 months ago | ||
Check if user has viewed a specific post
Started by: Brad Tipper in: Toolset Professional Support |
2 | 2 | 6 years, 9 months ago | ||
Shortcode to count number of posts a user has made of a certain type
Started by: Brad Tipper
in: Toolset Professional Support
Problem: I would like to show the number of posts a particular user has made of a specific post type. When I use Views, extra HTML is added that breaks my site's formatting. Solution: Use a custom shortcode to count the number of results in a View using get_view_query_results() and count() in PHP: // return the number of results in a View with no formatting add_shortcode( 'ts_view_num_results', 'ts_view_num_results_func'); function ts_view_num_results_func($atts) { $view_id = intval($atts['viewid']); $results = get_view_query_results( $view_id ); return count($results); } Relevant Documentation: https://codex.wordpress.org/Shortcode_API |
3 | 9 | 7 years, 1 month ago | ||
Conditional display of CRED post fields based on taxonomy
Started by: Brad Tipper in: Toolset Professional Support |
2 | 3 | 7 years, 4 months ago | ||
Filter posts based on user's saved categories
Started by: Brad Tipper in: Types Community Support |
2 | 2 | 7 years, 4 months ago | ||
Need code to auto generate nice title
Started by: Brad Tipper in: Toolset Professional Support |
2 | 6 | 7 years, 5 months ago |