juanC-8
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Añadir mas de una voz o subvoz
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 5 | Il y a 4 années et 11 mois | ||
Poder elegir varias opciones de busqueda
1
2
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 25 | Il y a 5 années et 2 mois | ||
Mensaje inicial en view
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 5 années et 3 mois | ||
Filtrar por fecha de publicacion
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 5 années et 3 mois | ||
Quitar botones siguiente anterior
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 4 | Il y a 5 années et 5 mois | ||
Buscador
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 5 années et 6 mois | ||
multiple checkbox in search form
Commencé par : juanC-8 in: Toolset Professional Support |
2 | 5 | Il y a 5 années et 6 mois | ||
Duplicate social share buttons
Commencé par : juanC-8
in: Toolset Professional Support
Problem: Social sharing plugin buttons are duplicated in View results and Content Templates. Solution: Look for a sharing plugin that offers a shortcode you can use to place the buttons. This will be more compatible than a plugin that injects the buttons automatically. Put that shortcode in a Content Template. |
2 | 3 | Il y a 5 années et 7 mois | ||
Don’t show pagination on parametric search
Commencé par : juanC-8
in: Toolset Professional Support
Problem: I'm using wpv_filter_query_post_process to remove some posts from the results. I would like to hide the pagination when no results remain. Solution: Use two filters in combination: function tssupp_no_initial_results( $query_results, $view_settings, $view_id ){ $target_views = array( 572 ); // Insertar el ID de la view if ( in_array( $view_id, $target_views ) ) { // Si existe un filtro if ( !isset( $query_results->query['meta_query'] ) && !isset( $query_results->query['tax_query'] ) && !isset( $query_results->query['s'] ) ) { $query_results->posts = array(); $query_results->post_count = 0; $query_results->found_posts = 0; add_filter( 'wpv_view_settings', 'ts_modify_rendered_view', 30, 2 ); } } return $query_results; } add_filter( 'wpv_filter_query_post_process', 'tssupp_no_initial_results', 10, 3 ); function ts_modify_rendered_view( $view_settings, $view_id ) { $view_settings['pagination']['type'] = 'disabled'; return $view_settings; } |
2 | 6 | Il y a 5 années et 7 mois | ||
Cambiar enlace por logo
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 6 années et 1 mois | ||
No me hace nada en los condicionales
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 6 années et 1 mois | ||
conditionals
Commencé par : juanC-8 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 1 mois | ||
Poner el filtro de busqueda en columnas
Commencé par : juanC-8 in: Toolset Professional Support |
2 | 3 | Il y a 6 années et 2 mois | ||
filtro con fecha wordpress
Commencé par : juanC-8 in: Toolset Professional Support |
2 | 5 | Il y a 6 années et 2 mois | ||
importar de forma masiva una serie de opciones en un campo select
Commencé par : juanC-8 in: Soporte profesional de Toolset |
2 | 3 | Il y a 6 années et 2 mois |