davidS-53
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
In a view, show only posts that DONT have a date field set.
Gestartet von: 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 | vor 5 Jahren, 10 Monaten | ||
Upscale images using types image custom size shortcode
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 11 Monaten | ||
cred_show_group not working with a cred_generic_field checkbox
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 3 | vor 5 Jahren, 11 Monaten | ||
CRED Form with Post Relationship doesn't save if multiple forms exist on page.
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 8 | vor 5 Jahren, 11 Monaten | ||
Using generic date field to set post date
Gestartet von: davidS-53 in: Chat Support |
1 | 2 | vor 5 Jahren, 11 Monaten | ||
Dynamic redirect for cred_delete_post_link
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 11 Monaten | ||
View with all child posts that are part of a given relationship
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 5 | vor 6 Jahren | ||
Force spiderfy open for markers on map view
Gestartet von: 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 | vor 6 Jahren | ||
Issues displaying large number of posts on map
Gestartet von: davidS-53 in: Toolset Professional Support |
3 | 12 | vor 6 Jahren | ||
Auto create child post if generic checkbox is checked
Gestartet von: 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 | vor 6 Jahren, 1 Monat | ||
Function to create custom post/relationship blocking Woo "processing" status
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 3 | vor 6 Jahren, 1 Monat | ||
types_get_field adds extra character for default option
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 9 | vor 6 Jahren, 2 Monaten | ||
File upload field unstylable
Gestartet von: davidS-53 in: Toolset Professional Support |
2 | 2 | vor 6 Jahren, 2 Monaten | ||
Post relationship doesn’t save
1
2
Gestartet von: davidS-53
in: Toolset Professional Support
Problem: Solution: |
2 | 19 | vor 6 Jahren, 2 Monaten | ||
Update slug when post title is updated
Gestartet von: davidS-53
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | vor 6 Jahren, 3 Monaten |