a.R
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 |
---|---|---|---|---|---|
[wpv-conditional] in Events Manager Form
Started by: a.R in: Toolset Professional Support |
3 | 7 | 2 months, 2 weeks ago | ||
Toolset Blocks or Views DESTROY buddypress group avatar upload form!
Started by: a.R in: Toolset Professional Support |
2 | 7 | 3 months, 1 week ago | ||
wpv-post-taxonomy-iterator PROBLEM
Started by: a.R in: Toolset Professional Support |
2 | 9 | 3 months, 2 weeks ago | ||
Custom Search: User sorting desroys URL parameter!
Started by: a.R in: Toolset Professional Support |
2 | 2 | 4 months, 1 week ago | ||
Sort search results by comment count?
Started by: a.R
in: Toolset Professional Support
Problem: The customer wants to sort results based on the comments count. Solution: Upon further review, I identified that the comment_count field in the wp_posts table can be used directly for sorting. I provided a code snippet to add to the theme's functions.php file to sort by the comment_count field: add_filter('wpv_filter_query', function($query, $setting, $view_id){ if (in_array($view_id, array(1234))) { $query['orderby'] = array('comment_count' => 'DESC'); } return $query; }, 101, 3); Replace 1234 with the actual view's ID. This code sorts the results by the number of comments in descending order. Relevant Documentation: |
2 | 3 | 4 months, 2 weeks ago | ||
In custom term search place label BEHIND input?
Started by: a.R
in: Toolset Professional Support
Problem: The customer wants to place the label behind the input in the search form to manipulate the label based on the input status using CSS. However, the input is currently placed inside the label, making this manipulation difficult. Solution: I confirmed that the customer is using legacy views to create the search form. jQuery(function($){ $(".class_containing_your_checkbox input[type='checkbox']").change(function(event){ var checkbox = $(event.target); var status = checkbox.prop('checked'); if (status) checkbox.parent().css('background-color', '#569cc3'); else checkbox.parent().css('background-color', ''); }); }); The code above applies CSS rules based on whether the checkbox is selected or not. The customer needs to change the function to target the specific div class containing the checkbox and apply the desired CSS for the labels. |
2 | 6 | 4 months, 3 weeks ago | ||
Search for posts related (many-to-many) to the post the search is embedded in
Started by: a.R in: Toolset Professional Support |
3 | 11 | 4 months, 4 weeks ago | ||
Who can define a post relationship (Backend)
Started by: a.R in: Toolset Professional Support |
1 | 2 | 4 months, 4 weeks ago | ||
embedded content form to add a child to current post
Started by: a.R in: Toolset Professional Support |
2 | 6 | 5 months ago | ||
search with map don´t work any more
Started by: a.R in: Toolset Professional Support |
3 | 11 | 5 months, 1 week ago | ||
Does search work with buddypress docs?
Started by: a.R in: Toolset Professional Support |
2 | 6 | 5 months, 1 week ago | ||
Search Form Reset won´t work anyy more
Started by: a.R in: Toolset Professional Support |
2 | 2 | 8 months, 1 week ago | ||
Custom Search: filter (select-option) only filters first ajax page
Started by: a.R in: Toolset Professional Support |
2 | 7 | 9 months, 2 weeks ago | ||
Find MULTIPLE posts by their IDs in one input field?
Started by: a.R in: Toolset Professional Support |
2 | 14 | 9 months, 3 weeks ago | ||
How set the content of a date field in a toolset form by jquery .val()?
Started by: a.R in: Toolset Professional Support |
2 | 12 | 10 months ago |