davidS-53
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 |
---|---|---|---|---|---|
In a view, show only posts that DONT have a date field set.
Iniciado por: davidS-53
en: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
|
2 | 3 | hace 6 años, 1 mes | |
Upscale images using types image custom size shortcode
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 2 | hace 6 años, 1 mes | |
cred_show_group not working with a cred_generic_field checkbox
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 3 | hace 6 años, 1 mes | |
CRED Form with Post Relationship doesn't save if multiple forms exist on page.
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 8 | hace 6 años, 1 mes | |
Using generic date field to set post date
Iniciado por: davidS-53 en: Chat Support |
|
1 | 2 | hace 6 años, 2 meses | |
Dynamic redirect for cred_delete_post_link
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 2 | hace 6 años, 2 meses | |
View with all child posts that are part of a given relationship
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 5 | hace 6 años, 2 meses | |
Force spiderfy open for markers on map view
Iniciado por: davidS-53
en: Toolset Professional Support
Problem: I've set up spiderfy on on my map which works nicely when clicked, can I force it to default to the spiderfy layout from the start? Otherwise users aren't going to know that there are multiple markers at one address. Solution: The client slightly adjusts some markers so they aren't in exactly the same location & use clustering. Relevant Documentation: |
|
2 | 4 | hace 6 años, 3 meses | |
Issues displaying large number of posts on map
Iniciado por: davidS-53 en: Toolset Professional Support |
|
3 | 12 | hace 6 años, 3 meses | |
Auto create child post if generic checkbox is checked
Iniciado por: davidS-53
en: Toolset Professional Support
Problem: I have a Form that creates parent posts. There is a generic checkbox in the Form. If the checkbox is checked, I would like to automatically create a child post. Solution: Use the cred_save_data API to create a post automatically, use the toolset_connect_posts API to automatically link the new child post to the new parent post, and test the checkbox by testing if the slug key exists in the $_POST superglobal. function create_child_log_item($post_id, $form_data) { if ( isset( $_POST['auto-add-log-item'] ) ) { $log_item = array( 'post_title' => $title, 'post_content' => '', 'post_status' => 'publish', 'post_type' => 'log-item', 'meta_input' => array( ), ); $log_item_id = wp_insert_post( $log_item , $wp_error ); if ( $form_data["id"]==283 ) { toolset_connect_posts( 'maintenance-task-log-item', $post_id, $log_item_id ); } } } add_action("cred_save_data","create_child_log_item",10,2); Relevant Documentation: |
|
2 | 7 | hace 6 años, 3 meses | |
Function to create custom post/relationship blocking Woo "processing" status
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 3 | hace 6 años, 3 meses | |
types_get_field adds extra character for default option
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 9 | hace 6 años, 4 meses | |
File upload field unstylable
Iniciado por: davidS-53 en: Toolset Professional Support |
|
2 | 2 | hace 6 años, 4 meses | |
Post relationship doesn’t save
1
2
Iniciado por: davidS-53
en: Toolset Professional Support
Problem: Solution: |
|
2 | 19 | hace 6 años, 5 meses | |
Update slug when post title is updated
Iniciado por: davidS-53
en: Toolset Professional Support
Problem: Solution: |
|
2 | 3 | hace 6 años, 5 meses |