geoffD
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 |
---|---|---|---|---|---|
Conditional Output in Visual Editor Cell
1
2
Iniciado por: geoffD
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 18 | hace 5 años, 8 meses | ||
types-custom-fields page not loading and software won't update
Iniciado por: geoffD en: Toolset Professional Support |
2 | 2 | hace 5 años, 9 meses | ||
Editing CPT
Iniciado por: geoffD en: Toolset Professional Support |
2 | 8 | hace 5 años, 9 meses | ||
Split: How do I choose which record to edit in edit form – redirect after submit
Iniciado por: geoffD en: Toolset Professional Support |
2 | 2 | hace 5 años, 9 meses | ||
How do I choose which record to edit in edit form
Iniciado por: geoffD en: Toolset Professional Support |
2 | 10 | hace 5 años, 9 meses | ||
WP-Admin acting strangely
Iniciado por: geoffD
en: 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 | hace 5 años, 9 meses | ||
How to update child post value from parent post
Iniciado por: geoffD
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | hace 6 años, 1 mes | ||
Split: Hierarchy of same post type – create new parent
Iniciado por: geoffD
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | hace 6 años, 1 mes | ||
Hierarchy of same post type
Iniciado por: geoffD en: Toolset Professional Support |
3 | 15 | hace 6 años, 1 mes | ||
Edit post from a different post, using Forms
Iniciado por: geoffD
en: 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 | hace 6 años, 6 meses | ||
Select2 not working on access control pages
Iniciado por: geoffD
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 6 | hace 6 años, 6 meses | ||
Setting up parent post in front end
1
2
Iniciado por: geoffD
en: 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 | hace 6 años, 6 meses | ||
View List Action
Iniciado por: geoffD en: Toolset Professional Support |
2 | 2 | hace 6 años, 7 meses | ||
child cred forms
Iniciado por: geoffD en: Toolset Professional Support |
2 | 14 | hace 6 años, 7 meses |