Ido Angel
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 |
---|---|---|---|---|---|
searching within distance kills the server
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: whenever i search something, the site thinks for a long time and then crashes. but the map displays them correctly. Solution: Yes, search in large data website will consume more server resource, and it will conduct some performance problems, but it should not conduct the problem: I suggest you follow our document to optimize the post view and filters. Relevant Documentation: |
2 | 4 | hace 5 años, 10 meses | ||
no distance filter
Iniciado por: Ido Angel en: Toolset Professional Support |
1 | 2 | hace 5 años, 10 meses | ||
creating group gifts
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: Solution: For more complex fields or native WooCommerce functionalities, generic fields can be used to process data through "Forms API Hooks" hooks. Relevant Documentation: |
2 | 5 | hace 5 años, 10 meses | ||
jQuery «append» happens twice – only in view, not elsewhere
Iniciado por: Ido Angel
en: Toolset Professional Support
Problem: I am using jQuery.each and jQuery.append to insert some content into the page after document ready, but for some reason append is happening twice. Solution: Check your jQuery.each selector to confirm there is only one element in the DOM. In this case, there are two matching filters because the View is split into search form and results using separate shortcodes. The filters are actually in the DOM twice. |
3 | 7 | hace 5 años, 10 meses | ||
sub taxonomy?
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 5 | hace 5 años, 10 meses | ||
limit search to selected terms in taxonomy
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 3 | hace 5 años, 10 meses | ||
instead of toolset excerpt, display relevanssi excerpt in results
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 5 | hace 5 años, 10 meses | ||
highlight search term in results
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 3 | hace 5 años, 10 meses | ||
Calculate age according to custom number field «year of birth»
Iniciado por: Ido Angel
en: 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 | hace 5 años, 10 meses | ||
render search view in a template – but only search from, without results
Iniciado por: Ido Angel en: Toolset Professional Support |
1 | 2 | hace 5 años, 11 meses | ||
[wpv-search-term param='wpv-xxx] display the name and not the slug
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 5 | hace 5 años, 11 meses | ||
Display selected search filters as a string in breadcrumbs
Iniciado por: Ido Angel
en: 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 | hace 6 años | ||
Allow frontend user to change "any" to "all" – closed by mistake
Iniciado por: Ido Angel en: Toolset Professional Support |
2 | 11 | hace 6 años | ||
are empty with 1 page
Iniciado por: Ido Angel
en: 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 | hace 6 años | ||
the events calendar recurrring events view
Iniciado por: Ido Angel
en: 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 | hace 6 años |