Jaime
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 |
---|---|---|---|---|---|
Display Images (Repeating Field) in Edit Form Horizontally
Started by: Jaime
in: Toolset Professional Support
Problem: I have a repeating image field in my Edit Post Form. I would like to display the images horizontally instead of vertically, but when I add the following CSS it changes the display of all repeating fields: .wpt-repctl.wpt-repctl-flex { display: inline-flex; width: 25%; margin-right: 1%; top: 0px; } I would like to only use this style for repeating images. Solution: Add a wrapping div with a CSS class like "rcc-img-edit" around the repeating image cred-field shortcode. Then target that ancestor in your CSS selector: .rcc-img-edit .wpt-repctl.wpt-repctl-flex { display: inline-flex; width: 25%; margin-right: 1%; top: 0px; } |
2 | 3 | 4 years, 1 month ago | ||
Hide/Show content based on conditional, but limit the number of displayed posts
Started by: Jaime
in: Toolset Professional Support
Problem: limit the number of posts created by a user containing the option 'On' to 3. Solution: It is possible with a post view + a post form, for example: Relevant Documentation: |
2 | 5 | 4 years, 3 months ago | ||
New Post Form notification emails not working anymore
Started by: Jaime
in: Toolset Professional Support
Problem: Send email notification with Toolset Forms, we want an alternation of WP SMTP plugin. Solution: You can try plugin "Post SMTP Mailer/Email Log": https://wordpress.org/plugins/post-smtp/ Relevant Documentation: |
2 | 3 | 4 years, 4 months ago | ||
After migrating with Duplicator, Marker Maps not showing
1
2
Started by: Jaime in: Toolset Professional Support |
2 | 21 | 4 years, 6 months ago | ||
After search twice map dissappear (rewriting search on url)
Started by: Jaime
in: Toolset Professional Support
Problem: Solution: jQuery(function($){ var form = $('form.js-wpv-filter-form-3403'); var url = form.attr('action') form.attr('action', url.replace('#038;', '')) }) |
2 | 7 | 4 years, 6 months ago | ||
Show message after trigger button
Started by: Jaime in: Toolset Professional Support |
2 | 9 | 4 years, 6 months ago | ||
Split: How to stop pagination controls from scrolling with the results
Started by: Jaime in: Toolset Professional Support |
2 | 6 | 4 years, 7 months ago | ||
Show all results on map despite pagination
Started by: Jaime in: Toolset Professional Support |
2 | 5 | 4 years, 7 months ago | ||
Masonry from posts on a Nested View
Started by: Jaime in: Toolset Professional Support |
3 | 9 | 4 years, 7 months ago | ||
Masonry Posts on a Nested View
Started by: Jaime in: Toolset Professional Support |
2 | 7 | 4 years, 7 months ago | ||
Display grandchildren posts
Started by: Jaime in: Toolset Professional Support |
2 | 7 | 4 years, 8 months ago | ||
Images on Masonry Overlapping
Started by: Jaime in: Soporte profesional de Toolset |
2 | 6 | 4 years, 8 months ago | ||
Create a Gallery with Repeating Fields with Magnific Popup
Started by: Jaime in: Soporte profesional de Toolset |
2 | 3 | 4 years, 9 months ago | ||
Adding Custom Field to a CPT not working
Started by: Jaime
in: Toolset Professional Support
Problem: I am unable to add another custom field to this field group. Solution: Increase your server's upload_max_filesize and post_max_size configurations, as well as MaxInputVars. |
2 | 5 | 4 years, 10 months ago | ||
Submit button with a url conditional based on a select field
Started by: Jaime
in: Toolset Professional Support
Problem: I have a Form that includes a select field. Depending on the selection, I would like to redirect the User to a different location. Solution: Use the cred_success_redirect hook to redirect based on the form contents: add_filter('cred_success_redirect', 'custom_redirect_form_abc',10,3); function custom_redirect_form_abc($url, $post_id, $form_data) { if ($form_data['id']==837){ if ( get_post_meta($post_id, 'wpcf-tipo-de-empresa', true ) == 'Empresa') { $url = "http://bormujazz.com/form-empresa"; }elseif ( get_post_meta($post_id, 'wpcf-tipo-de-empresa', true ) == 'Profesional') { $url = "http://bormujazz.com/form-profesional/"; } } return $url; } Relevant Documentation: |
3 | 7 | 4 years, 10 months ago |