aaronM-9
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 |
---|---|---|---|---|---|
Add to Cart Button Incorrectly Only Adding Qty 1
Started by: aaronM-9 in: Toolset Professional Support |
2 | 5 | 4 years, 6 months ago | ||
WooCommerce Archive Not Displaying in Astra Theme
1
2
Started by: aaronM-9 in: Toolset Professional Support |
3 | 26 | 4 years, 7 months ago | ||
Adding View to Page Causes Fatal Error in WordPress
Started by: aaronM-9 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Layout Not Inhereting Theme Styling
Started by: aaronM-9
in: Toolset Professional Support
Problem: Design singe product post with custom CSS codes. Solution: It is a CSS issue, you can setup CSS codes to style it as what you want, for example: https://toolset.com/forums/topic/layout-not-inhereting-theme-styling/#post-1561051 Relevant Documentation: |
2 | 3 | 4 years, 8 months ago | ||
Disabling Comments for a Post Type or in a Layout
Started by: aaronM-9 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Text Inside Select Cut Off
Started by: aaronM-9 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Change Comparison of Checkbox Filter
Started by: aaronM-9
in: Toolset Professional Support
Problem: How to make a taxonomy filter with checkboxes limit WooCommerce product listings to only those items that have ALL of the selected checkboxes. Solution: You can setup the taxonomy filter manually, for example: For example: Relevant Documentation: https://toolset.com/documentation/user-guides/views/filtering-views-by-taxonomy/ |
2 | 6 | 4 years, 8 months ago | ||
Difficulty Storing Related Post
1
2
3
4
Started by: aaronM-9 in: Toolset Professional Support |
4 | 49 | 5 years, 5 months ago | ||
wpv-post-url Shortcode Stopped Working
Started by: aaronM-9
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 5 years, 6 months ago | ||
Shortcodes Displaying on Front-End after Filtering Results
Started by: aaronM-9 in: Toolset Professional Support |
2 | 4 | 5 years, 6 months ago | ||
How to Only Show Taxonomies Relevant to the Filtered Results
Started by: aaronM-9
in: Toolset Professional Support
Problem: I have a View that shows a custom post type. There is a custom search filter in that View that shows taxonomy terms. I want to show only the terms that are relevant to the custom post type. Some terms are not used with any posts in this post type, and I want those terms hidden. Solution: Use the option "Show only available options for each input" as described in the link below. Relevant Documentation: |
2 | 3 | 5 years, 7 months ago | ||
“Can Only Edit Users with the Following Roles”
Started by: aaronM-9
in: Toolset Professional Support
Problem: I have a form set to modify users in the "subscriber" role. However, when submitting the form while logged in as a user in the "subscriber" role, I get the following error message: "You can only edit users with following roles". Solution: 1) The edit user form needed to have the subscriber role set. 2) The user data was getting corrupted somehow when programmatically changing their role because there was a typo in the role name. This was causing the Toolset form to throw an error even once reverting the user back to the subscriber role. Relevant Documentation: |
2 | 13 | 5 years, 10 months ago | ||
Conditional Statement in wpv-for-each
Started by: aaronM-9 in: Toolset Professional Support |
2 | 3 | 5 years, 10 months ago | ||
Filtering View Based on Relationship with Two Parents
1
2
Started by: 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 | 6 years, 1 month ago | ||
Slide Stopped Working
Started by: 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 | 6 years, 4 months ago |