geoffD
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 |
---|---|---|---|---|---|
Conditional Output in Visual Editor Cell
1
2
Started by: geoffD
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 18 | 5 years, 8 months ago | ||
types-custom-fields page not loading and software won't update
Started by: geoffD in: Toolset Professional Support |
2 | 2 | 5 years, 8 months ago | ||
Editing CPT
Started by: geoffD in: Toolset Professional Support |
2 | 8 | 5 years, 8 months ago | ||
Split: How do I choose which record to edit in edit form – redirect after submit
Started by: geoffD in: Toolset Professional Support |
2 | 2 | 5 years, 8 months ago | ||
How do I choose which record to edit in edit form
Started by: geoffD in: Toolset Professional Support |
2 | 10 | 5 years, 8 months ago | ||
WP-Admin acting strangely
Started by: geoffD
in: Toolset Professional Support
Problem: When I login to wp-admin, the normal dashboard is replaced with an unstyled form that says "Create a new Relationship Form" and "Use an existing Form". Solution: Ask your host to activate the mbstring extension on your server. Relevant Documentation: |
2 | 5 | 5 years, 9 months ago | ||
How to update child post value from parent post
Started by: geoffD
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | 6 years, 1 month ago | ||
Split: Hierarchy of same post type – create new parent
Started by: geoffD
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 6 years, 1 month ago | ||
Hierarchy of same post type
Started by: geoffD in: Toolset Professional Support |
3 | 15 | 6 years, 1 month ago | ||
Edit post from a different post, using Forms
Started by: geoffD
in: Toolset Professional Support
Problem: I would like to use Forms to edit a post, but I would like to display the Form on a different post. Solution: Create a View that displays the post title for the post you want to edit, and place the View on the post where you want to display the Form. Replace the post title shortcode with the Form shortcode. |
2 | 2 | 6 years, 5 months ago | ||
Select2 not working on access control pages
Started by: geoffD
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 6 | 6 years, 5 months ago | ||
Setting up parent post in front end
1
2
Started by: geoffD
in: Toolset Professional Support
Problem: The issue here is that the user wanted to set the parent post automatically when creating a chid post. Now the user will CREATE that parent post and when creating the child that parent should be set automatically. Solution: Add the following to your functions.php file // Add Shortcode function user_post_id( $atts ) { // Attributes $atts = shortcode_atts( array( 'author_id' => '', 'cpt' => '', ), $atts ); $args = array( 'author' => $atts['author_id'], 'orderby' => 'post_date', 'order' => 'ASC', 'posts_per_page' => 1, 'post_type'=> $atts['cpt'] ); $post=get_posts($args); return $post[0]->ID; } add_shortcode( 'user_post_id', 'user_post_id' ); Then on your CRED form where it has the Parent Field on the edit form page add this as the value [user_post_id author_id="[wpv-current-user info='id']" cpt='post'] |
2 | 22 | 6 years, 6 months ago | ||
View List Action
Started by: geoffD in: Toolset Professional Support |
2 | 2 | 6 years, 6 months ago | ||
child cred forms
Started by: geoffD in: Toolset Professional Support |
2 | 14 | 6 years, 7 months ago |