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, 4 months ago | ||
Older Preview Images are displayed incorret in backend of WP
Started by: michaelM-30 in: Toolset Professional Support |
2 | 14 | 5 years, 5 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, 7 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, 7 months ago | ||
Showing different custom markers on single map
Started by: michaelM-30 in: Toolset Professional Support |
2 | 14 | 5 years, 7 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 | 5 years, 8 months ago | ||
WPBakery Media Grid not working with Toolset?
Started by: michaelM-30 in: Toolset Professional Support |
3 | 8 | 5 years, 8 months 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 | 5 years, 8 months ago | ||
CRED Form Titles vanish in Backend when using code in functions_php
Started by: michaelM-30 in: Toolset Professional Support |
2 | 3 | 5 years, 9 months 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 | 5 years, 11 months ago | ||
Using Images from Toolset fields with WpBakery elements
Started by: michaelM-30 in: Toolset Professional Support |
2 | 6 | 6 years ago | ||
Custom Shortcodes within fields
Started by: michaelM-30
in: Toolset Professional Support
Problem: In order to get the look we need, we use WPBakery shortcode template for our posts. Is there a way to get the shortcode (visible or invisbile) inside the Toolset Forms WYSIWIG field to get the same functionality on the frontend? Solution: But you can input the WPBakery shortcodes into wysiwyg field, and the wysiwyg field of Toolset form won't be able to display the WPBakery shortcode as HTML codes, it will display the WPBakery shortcodes directly Relevant Documentation: |
3 | 13 | 6 years ago | ||
Upgrading to types 3.0 – migration button is missing
Started by: michaelM-30
in: Toolset Professional Support
Problem: I would like to update my site to Types 3+, and migrate to the new relationships system. After updating the plugin, I cannot find the relationships migration button. Solution: If no post relationships existed in the old system, there is nothing to migrate. Create new post relationships and begin using the new relationships system. |
2 | 13 | 6 years ago | ||
Map shortcodes are written out to the page
Started by: michaelM-30
in: Toolset Professional Support
Problem: Toolset Maps shortcodes are written out to the page instead of showing maps. Solution: Be sure to activate Toolset Maps plugin. |
1 | 2 | 6 years ago | ||
Is it possible to restict access to widgets with Toolset?
Started by: michaelM-30
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 6 years, 11 months ago |