Daniel
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 |
---|---|---|---|---|---|
generate an ical feed
Gestartet von: Daniel in: Toolset Professional Support |
3 | 4 | vor 8 Monaten, 2 Wochen | ||
Maps shows only five markers
Gestartet von: Daniel
in: Toolset Professional Support
Problem: Only 5 markers are displayed on a map that should show many more markers. If I check the Maps address cache in Toolset > Settings > Maps, there are no addresses cached. Solution: The minimum required MySQL version is 5.6. In this case, the server did not meet the minimum requirements. Updating the MySQL version is the best solution in this case. Relevant Documentation: |
3 | 8 | vor 3 Jahren, 5 Monaten | ||
WP could not create a database table for address cache.
1
2
Gestartet von: Daniel in: Toolset Professional Support |
3 | 30 | vor 5 Jahren, 1 Monat | ||
Marker not displaying in loop with address field
Gestartet von: Daniel
in: Toolset Professional Support
Problem: I have a View that includes an address field in the loop, but none of the markers are appearing on the map. If I display a map on the single post containing the same address field, the marker appears as expected. Solution: In this case, some custom code is causing the map ID to be modified. This breaks the map initialization code on the page with the View. Disabling this get_the_excerpt filter code fixes the problem. |
2 | 10 | vor 5 Jahren, 11 Monaten | ||
Set slider time to an individual value
Gestartet von: Daniel in: Toolset Professional Support |
2 | 2 | vor 6 Jahren, 4 Monaten | ||
Set slider time to a higher value
Gestartet von: Daniel in: Toolset Professional Support |
2 | 5 | vor 6 Jahren, 4 Monaten | ||
Zusammenführen des Adressfelds aus mehreren Feldern
Gestartet von: Daniel in: Toolset Professioneller Support |
2 | 3 | vor 6 Jahren, 7 Monaten | ||
Copy content into new post but change the author
Gestartet von: Daniel
in: Toolset Professional Support
Problem: I would like to use a cred_save_data hook to modify a post's author to be the current User. Solution: add_action('cred_save_data_34', 'duplicate_post', 10, 2); function duplicate_post($post_id, $form_data) { // get data of original post $post = get_post( $form_data['container_id'], ARRAY_A ); // update the new post with this data $post['ID'] = $post_id; $post['post_title'] = 'Copy of ' . $post['post_title']; // -- add this line to modify the post author -- $post['post_author'] = get_current_user_id(); wp_update_post( $post ); } Relevant Documentation: |
2 | 3 | vor 6 Jahren, 10 Monaten | ||
Copy content / but clear some fields
Gestartet von: Daniel in: Toolset Professional Support |
3 | 10 | vor 6 Jahren, 10 Monaten |