michaelM-30
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Is it possible to show all entries on map, but the entries below are paginated?
Started by: michaelM-30 in: Toolset Professional Support |
|
2 | 11 | 5 years, 8 months ago | |
Older Preview Images are displayed incorret in backend of WP
Started by: michaelM-30 in: Toolset Professional Support |
|
2 | 14 | 5 years, 9 months ago | |
Forms created befor the new editor are missing custom code when openend
Started by: michaelM-30
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
|
2 | 8 | 5 years, 11 months ago | |
Filtering by year – with multiple &view_id’s
Started by: michaelM-30
in: Toolset Professional Support
Problem: I need another View ID to work with the PHP script - so I will need an array for this variable? Solution: You can try PHP function in_array(), for example: https://toolset.com/forums/topic/filtering-by-year-with-multiple-view_ids/#post-1229217 Relevant Documentation: |
|
2 | 5 | 5 years, 11 months ago | |
Showing different custom markers on single map
Started by: michaelM-30 in: Toolset Professional Support |
|
2 | 14 | 5 years, 11 months ago | |
Image Gallery with Captions
Started by: michaelM-30
in: Toolset Professional Support
Problem: 1) I want to create a gallery with a lot of images with toolset, with captions displayed underneath, If possible displayed as a masonry gallery 2) I would like to use the ID's with comma seperated. Solution: There isn't such a built-in masonry version feature within Toolset plugins, it needs custom codes, see details here: https://toolset.com/forums/topic/image-gallery-with-captions/#post-1210471 Relevant Documentation: |
|
2 | 4 | 6 years ago | |
WPBakery Media Grid not working with Toolset?
Started by: michaelM-30 in: Toolset Professional Support |
|
3 | 8 | 6 years ago | |
Mark last 100 posts as NEW
Started by: michaelM-30
in: Toolset Professional Support
Problem: The issue here it that the user wanted to mark the latest 100 posts when they are displayed in a view. Solution: The solution to this can be seen below. |
|
2 | 13 | 6 years ago | |
CRED Form Titles vanish in Backend when using code in functions_php
Started by: michaelM-30 in: Toolset Professional Support |
|
2 | 3 | 6 years, 1 month ago | |
Post Modification Date from form field
Started by: michaelM-30
in: Toolset Professional Support
Problem: I have a Form that contains a date field. I would like to use the date from the field as the post date. The posts are published in "Pending Review" status. Solution: You can't set the publish date of a Pending Review post, but you can set the last modification date using this code: add_action('cred_save_data', 'my_save_data_action',10,2); function my_save_data_action($post_id, $form_data) { // if a specific form $forms = array( 123, 456, 789 ); if ( in_array( $form_data['id'], $forms) ) { // nothing below here was changed for the comma-separated list of IDs $timestamp = get_post_meta($post_id, 'wpcf-datum-des-bildes', true); $date = date('Y-m-d H:i:s', $timestamp); if(isset($timestamp)){ $args = array( 'ID' => $post_id, 'post_modified' => $date ); wp_update_post( $args ); } } Relevant Documentation: |
|
2 | 10 | 6 years, 3 months ago |