michaelM-30
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é |
---|---|---|---|---|---|
None of the archive layouts are displaying anything
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 8 | Il y a 5 années et 4 mois | ||
Is it possible to show all entries on map, but the entries below are paginated?
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 11 | Il y a 5 années et 7 mois | ||
Older Preview Images are displayed incorret in backend of WP
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 14 | Il y a 5 années et 8 mois | ||
Forms created befor the new editor are missing custom code when openend
Commencé par : michaelM-30
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 8 | Il y a 5 années et 9 mois | ||
Filtering by year – with multiple &view_id’s
Commencé par : 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 | Il y a 5 années et 9 mois | ||
Showing different custom markers on single map
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 14 | Il y a 5 années et 10 mois | ||
Image Gallery with Captions
Commencé par : 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 | Il y a 5 années et 10 mois | ||
WPBakery Media Grid not working with Toolset?
Commencé par : michaelM-30 in: Toolset Professional Support |
3 | 8 | Il y a 5 années et 11 mois | ||
Mark last 100 posts as NEW
Commencé par : 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 | Il y a 5 années et 11 mois | ||
Marking Last 100 posts as NEW
Commencé par : michaelM-30 in: Chat Support |
1 | 1 | Il y a 5 années et 11 mois | ||
CRED Form Titles vanish in Backend when using code in functions_php
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 3 | Il y a 6 années | ||
Post Modification Date from form field
Commencé par : 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 | Il y a 6 années et 2 mois | ||
Using Images from Toolset fields with WpBakery elements
Commencé par : michaelM-30 in: Toolset Professional Support |
2 | 6 | Il y a 6 années et 2 mois | ||
Custom Shortcodes within fields
Commencé par : 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 | Il y a 6 années et 2 mois | ||
Upgrading to types 3.0 – migration button is missing
Commencé par : 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 | Il y a 6 années et 3 mois |