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 |
---|---|---|---|---|---|
types-custom-fields page not loading and software won't update
Started by: geoffD in: Toolset Professional Support |
|
2 | 2 | 2 years, 1 month ago | |
Editing CPT
Started by: geoffD in: Toolset Professional Support |
|
2 | 8 | 2 years, 1 month 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 | 2 years, 1 month ago | |
How do I choose which record to edit in edit form
Started by: geoffD in: Toolset Professional Support |
|
2 | 10 | 2 years, 1 month 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: https://toolset.com/toolset-requirements/ |
|
2 | 5 | 2 years, 2 months ago | |
How to update child post value from parent post
Started by: geoffD
in: Toolset Professional Support
Problem: How to update child post value from parent post Solution: You can use Toolset Forms (CRED) hook "cred_save_data" to set child post value. You can find the proposed solution, in this case, with the following reply: https://toolset.com/forums/topic/continuation-from-previous-ticket/#post-1122659 Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
|
2 | 5 | 2 years, 6 months ago | |
Split: Hierarchy of same post type – create new parent
Started by: geoffD
in: Toolset Professional Support
Problem: Split: Hierarchy of same post type - create new parent Solution: You can use Toolset Forms (CRED) hook "cred_save_data" to set parent for your Hierarchical post type using "post_parent" column. You can find the proposed solution, in this case, with the following reply: https://toolset.com/forums/topic/split-hierarchy-of-same-post-type-create-new-parent/#post-1120832 Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
|
2 | 9 | 2 years, 6 months ago | |
Hierarchy of same post type
Started by: geoffD in: Toolset Professional Support |
|
3 | 15 | 2 years, 6 months 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 | 2 years, 10 months ago | |
Select2 not working on access control pages
Started by: geoffD
in: Toolset Professional Support
Problem: Select2 not working on access control pages Solution: You may find the conflict with select2 if you are using Slider Revolution plugin. You can find proposed solution, in this case, with the following reply: https://toolset.com/forums/topic/access-control-of-pages/#post-901650 Relevant Documentation: |
|
2 | 6 | 2 years, 10 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 | 2 years, 11 months ago | |
View List Action
Started by: geoffD in: Toolset Professional Support |
|
2 | 2 | 2 years, 12 months ago | |
child cred forms
Started by: geoffD in: Toolset Professional Support |
|
2 | 14 | 3 years ago |