Ido Angel
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 |
---|---|---|---|---|---|
sub taxonomy?
Started by: Ido Angel in: Toolset Professional Support |
2 | 5 | 5 years, 10 months ago | ||
limit search to selected terms in taxonomy
Started by: Ido Angel in: Toolset Professional Support |
2 | 3 | 5 years, 10 months ago | ||
instead of toolset excerpt, display relevanssi excerpt in results
Started by: Ido Angel in: Toolset Professional Support |
2 | 5 | 5 years, 10 months ago | ||
highlight search term in results
Started by: Ido Angel in: Toolset Professional Support |
2 | 3 | 5 years, 10 months ago | ||
Calculate age according to custom number field “year of birth”
Started by: Ido Angel
in: Toolset Professional Support
Problem: I would like to calculate an age in years based on a given birth year. Solution: It's not possible to calculate an age with only a year. You must have a year, month, and day to perform an accurate calculation. I have created a custom shortcode for this purpose, you can adapt for your needs. Relevant Documentation: |
2 | 7 | 5 years, 10 months ago | ||
render search view in a template – but only search from, without results
Started by: Ido Angel in: Toolset Professional Support |
1 | 2 | 5 years, 11 months ago | ||
[wpv-search-term param='wpv-xxx] display the name and not the slug
Started by: Ido Angel in: Toolset Professional Support |
2 | 5 | 5 years, 11 months ago | ||
Display selected search filters as a string in breadcrumbs
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: For example: [wpv-search-term param='wpv-known-as'] You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 7 | 5 years, 11 months ago | ||
Allow frontend user to change "any" to "all" – closed by mistake
Started by: Ido Angel in: Toolset Professional Support |
2 | 11 | 5 years, 12 months ago | ||
are empty with 1 page
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: For example: Showing [wpv-pager-current-page force="true"] of [wpv-pager-total-pages force="true"] Relevant Documentation: |
2 | 4 | 5 years, 12 months ago | ||
the events calendar recurrring events view
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: Here is an example of such code (the View ID would need editing): /** * Filter event query to show future events */ function tssupp_filter_event_query($view_args, $view_settings, $view_id) { if ( in_array( $view_id, array( 123 ) ) ) { // Edit View ID(s) if (!isset($view_args['meta_query'])) { $view_args['meta_query'] = array(); } $meta_query = array( 'key' => '_EventStartDateUTC', 'value' => date("Y-m-d H:i:s"), 'type' => 'DATETIME', 'compare' => '>', ); $view_args['meta_query'][] = $meta_query; } return $view_args; } add_filter('wpv_filter_query', 'tssupp_filter_event_query', 101, 3); The thread also includes an example of code that would be used to filter between a range of dates. Relevant Documentation: |
2 | 12 | 5 years, 12 months ago | ||
instead of taxonomy archive, link to search page
Started by: Ido Angel
in: Toolset Professional Support
Problem: in search results, when clicking on a taxonomy, instead of linking to the taxonomy archive page i want to link to the current search page, only filtered by the taxonomy. Solution: It needs a child taxonomy view, for example: Create a taxonomy view: - query terms of taxonomy "known-as", - filter by: -In the view's loop, each term's link, like this: https://toolset.com/forums/topic/instead-of-taxonomy-archive-link-to-search-page/#post-1152949 Relevant Documentation: |
2 | 6 | 6 years ago | ||
taxonomy which is also a post?
Started by: Ido Angel in: Toolset Professional Support |
1 | 4 | 6 years ago | ||
display vustom field/taxonomy in a view only if it was filtered
Started by: Ido Angel in: Toolset Professional Support |
2 | 3 | 6 years ago | ||
Allow frontend user to change "any" to "all"
Started by: Ido Angel in: Toolset Professional Support |
2 | 8 | 6 years ago |