davidS-53
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
In a view, show only posts that DONT have a date field set.
Commencé par : davidS-53
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | Il y a 6 années | ||
Upscale images using types image custom size shortcode
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 2 | Il y a 6 années | ||
cred_show_group not working with a cred_generic_field checkbox
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 3 | Il y a 6 années | ||
CRED Form with Post Relationship doesn't save if multiple forms exist on page.
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 8 | Il y a 6 années | ||
Using generic date field to set post date
Commencé par : davidS-53 in: Chat Support |
1 | 2 | Il y a 6 années et 1 mois | ||
Dynamic redirect for cred_delete_post_link
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 2 | Il y a 6 années et 1 mois | ||
View with all child posts that are part of a given relationship
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 5 | Il y a 6 années et 1 mois | ||
Force spiderfy open for markers on map view
Commencé par : davidS-53
in: 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 | Il y a 6 années et 1 mois | ||
Issues displaying large number of posts on map
Commencé par : davidS-53 in: Toolset Professional Support |
3 | 12 | Il y a 6 années et 2 mois | ||
Auto create child post if generic checkbox is checked
Commencé par : davidS-53
in: 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 | Il y a 6 années et 2 mois | ||
Function to create custom post/relationship blocking Woo "processing" status
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 2 mois | ||
types_get_field adds extra character for default option
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 9 | Il y a 6 années et 3 mois | ||
File upload field unstylable
Commencé par : davidS-53 in: Toolset Professional Support |
2 | 2 | Il y a 6 années et 3 mois | ||
Post relationship doesn’t save
1
2
Commencé par : davidS-53
in: Toolset Professional Support
Problem: Solution: |
2 | 19 | Il y a 6 années et 4 mois | ||
Update slug when post title is updated
Commencé par : davidS-53
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | Il y a 6 années et 4 mois |