sandraB-2
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 |
---|---|---|---|---|---|
Repeating fields – How to add the current image in the ‘separartor’
Started by: sandraB-2
in: Toolset Professional Support
Problem: Solution: |
2 | 3 | 3 years, 6 months ago | ||
How do I output the name of the day of the week with a date field
Started by: sandraB-2
in: Toolset Professional Support
Problem: The user had used out datepicker field to select a date on the backend but only wants to display the Day rather than the entire date. Solution: This can be done using the following shortcode. Where you will replace "agenda-datum" with the slug of the custom field and using the format attribute to choose which component of the date you want to display or how you would like the date to be formatted. Relevant Documentation: |
2 | 5 | 4 years, 4 months ago | ||
I want to add images titles in a view with repeater image fields
Started by: sandraB-2 in: Toolset Professional Support |
2 | 2 | 4 years, 6 months ago | ||
Set a condition to show a view in a page template
Started by: sandraB-2 in: Toolset Professional Support |
3 | 5 | 5 years, 9 months ago | ||
Edit posttype form with wysiwyg field. Disable linksettingsbutton
Started by: sandraB-2
in: Toolset Professional Support
Problem: I have a WYSIWYG field that includes a link button. I would like to restrict existing content links by post type. Solution: The following code sample shows how to restrict entire post types from the existing content link menu: // filter custom post types out of existing content link options in tinyMCE function custom_wp_link_query_args($query) { $pt_new = array(); $exclude_types = array( 'book', 'chapter' ); foreach ($query['post_type'] as $pt) { if (in_array($pt, $exclude_types)) continue; $pt_new[] = $pt; } $query['post_type'] = $pt_new; return $query; } add_filter('wp_link_query_args', 'custom_wp_link_query_args'); Relevant Documentation: |
2 | 3 | 5 years, 10 months ago | ||
How can I translate labels or options in the cred_form with polylang
Started by: sandraB-2 in: Toolset Professional Support |
2 | 2 | 6 years, 4 months ago | ||
Obligated text fields do not work. Cred form can still be submitted
Started by: sandraB-2
in: Toolset Professional Support
Problem: The issue here is that the user can submit the form with empty required fields if they are in a conditional statement. Solution: This issue has been resolved in our Latest version of Types and this should no longer be possible to do. |
2 | 6 | 6 years, 5 months ago |