aaronM-9
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Conditional Statement in wpv-for-each
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 3 | hace 5 años, 10 meses | ||
Filtering View Based on Relationship with Two Parents
1
2
Iniciado por: aaronM-9
en: 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 | hace 6 años, 1 mes | ||
Slide Stopped Working
Iniciado por: aaronM-9
en: 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 | hace 6 años, 4 meses | ||
Forms Notification sent for wrong Form submission
Iniciado por: aaronM-9
en: 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 | hace 6 años, 4 meses | ||
AJAX Error When Sending Test E-Mail Notification
1
2
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 22 | hace 6 años, 4 meses | ||
Custom Field Not Saving
Iniciado por: aaronM-9
en: 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 | hace 6 años, 4 meses | ||
Can you use either or logic in CRED conditional statement?
Iniciado por: aaronM-9
en: 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 | hace 6 años, 4 meses | ||
Can a date/time field be modified based on the user's timezone?
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 6 | hace 6 años, 4 meses | ||
Turn Checkboxes Object into Array
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 5 | hace 6 años, 4 meses | ||
Post not displaying after form submission
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 9 | hace 6 años, 4 meses | ||
Hide Posts with Certain Meta from All Views
Iniciado por: aaronM-9
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 6 | hace 6 años, 5 meses | ||
Can I hide specific buttons on front-end content submission?
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 13 | hace 6 años, 5 meses | ||
Conditional Notification Based on Checkbox Doesn't Work
Iniciado por: aaronM-9 en: Toolset Professional Support |
2 | 14 | hace 6 años, 5 meses | ||
Inserting Images into Front-End Submission
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses | ||
How do I display value of a custom field not managed by Types?
Iniciado por: aaronM-9
en: 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 | hace 6 años, 5 meses |