aaronM-9
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Conditional Statement in wpv-for-each
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 3 | vor 5 Jahren, 10 Monaten | ||
Filtering View Based on Relationship with Two Parents
1
2
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: I would like to filter a View using two one-to-many relationships, but I am only able to add one relationship filter using the GUI. I would like to be able to pass both parent post filter values into the View using shortcode attributes. Solution: Use the wpv_filter_query API to apply multiple toolset relationships filters, and use any arbitrary shortcode attributes to pass values into the View. add_filter( 'wpv_filter_query', 'query_two_rels_by_shortcode_atts',99,3 ); function query_two_rels_by_shortcode_atts( $query_args, $views_settings, $view_id) { global $WP_Views; $view_ids = array( 498 ); if (in_array($view_id, $view_ids)){ $shortcode_atts = array('childid'=>0, 'courseid'=>0); $viewSlug = get_post_field('post_name', $view_id); foreach($WP_Views->view_shortcode_attributes as $atts) { if($atts['name'] == $viewSlug) { $shortcode_atts = $atts; break; } } $child_id = $shortcode_atts['childid']; $course_id = $shortcode_atts['courseid']; $query_args['toolset_relationships'] = array( array( 'role' => 'child', 'related_to' => $child_id, 'relationship' => 'household-child_household-enrollment', ), array( 'role' => 'child', 'related_to' => $course_id, 'relationship' => 'household-course_household-enrollment', ), ); } return $query_args; } Relevant Documentation: |
3 | 16 | vor 6 Jahren, 1 Monat | ||
Slide Stopped Working
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: A slider with automatic pagination and AJAX updates stopped working after updating to Maps 1.5. Solution: Update to Maps 1.5.1 to fix this issue. |
2 | 16 | vor 6 Jahren, 4 Monaten | ||
Forms Notification sent for wrong Form submission
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: Form notifications from Form A are being triggered when I submit Form B. Solution: Notifications are not form-specific, so notifications set for Form A can be triggered by changes in Form B. |
2 | 10 | vor 6 Jahren, 4 Monaten | ||
AJAX Error When Sending Test E-Mail Notification
1
2
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 22 | vor 6 Jahren, 4 Monaten | ||
Custom Field Not Saving
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: I have a custom field in a Form that is not saving. The field is surrounded by a wpv-conditional statement. Solution: Instead of wrapping the field in a conditional, try using the conditional to toggle the display of a parent container on or off using CSS. Conditionals around field shortcodes can be problematic. |
2 | 7 | vor 6 Jahren, 4 Monaten | ||
Can you use either or logic in CRED conditional statement?
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: I would like to use "either" and "or" logic in a Forms conditional group statement. Solution: You can add multiple rows to the conditional builder, and you can the logical operator "OR" in your conditions. Relevant Documentation: |
2 | 13 | vor 6 Jahren, 4 Monaten | ||
Can a date/time field be modified based on the user's timezone?
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 6 | vor 6 Jahren, 4 Monaten | ||
Turn Checkboxes Object into Array
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 5 | vor 6 Jahren, 4 Monaten | ||
Post not displaying after form submission
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 9 | vor 6 Jahren, 4 Monaten | ||
Hide Posts with Certain Meta from All Views
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 6 | vor 6 Jahren, 5 Monaten | ||
Can I hide specific buttons on front-end content submission?
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 13 | vor 6 Jahren, 5 Monaten | ||
Conditional Notification Based on Checkbox Doesn't Work
Gestartet von: aaronM-9 in: Toolset Professional Support |
2 | 14 | vor 6 Jahren, 5 Monaten | ||
Inserting Images into Front-End Submission
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: I would like to enable the Add Media button in Form WYSIWYG editors. Solution: There is an option in the Form editor screen that will enable or disable this button. |
2 | 6 | vor 6 Jahren, 5 Monaten | ||
How do I display value of a custom field not managed by Types?
Gestartet von: aaronM-9
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display a custom field that is not created using Types. Solution: |
2 | 3 | vor 6 Jahren, 5 Monaten |