cristhianB
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 |
---|---|---|---|---|---|
Problems with search and pagination in views
Started by: cristhianB in: Toolset Professional Support |
3 | 4 | 11 months, 2 weeks ago | ||
Redirigir pagina de inicio para usuarios logueados
Started by: cristhianB in: Soporte profesional de Toolset |
2 | 2 | 5 years, 11 months ago | ||
como mostrar entradas en una pagina de wordpress por categorías
Started by: cristhianB in: Toolset Professional Support |
2 | 3 | 6 years ago | ||
Las taxonomía no respetan la estructura de la url.
Started by: cristhianB in: Toolset Professional Support |
3 | 8 | 6 years, 7 months ago | ||
Split: Alto consumo de CRED
1
2
Started by: cristhianB in: Soporte profesional de Toolset |
3 | 18 | 6 years, 7 months ago | ||
Como puedo configurar los resultados de busqueda en View
1
2
Started by: cristhianB in: Soporte profesional de Toolset |
2 | 18 | 6 years, 8 months ago | ||
necesito una condición donde el usuario puede escribir un mínimo de 50 palabras
Started by: cristhianB
in: Soporte profesional de Toolset
Problem: Solution: add_filter( 'cred_form_validate', 'tssupp_custom_validation', 10, 2 ); function tssupp_custom_validation( $error_fields, $form_data ) { //field data are field values and errors list( $fields,$errors ) = $error_fields; //validate if specific form if ( $form_data['id'] == 12 ) { if ( isset( $fields['wpcf-descripcion']['value'] ) && str_word_count( $fields['wpcf-descripcion']['value'] ) < 50 ) { $errors['wpcf-descripcion'] = 'Debe escribir mínimo 50 palabras'; } } return array( $fields,$errors ); } Relevant Documentation: |
2 | 7 | 6 years, 9 months ago | ||
Split: Dudas en cómo usar filtros
Started by: cristhianB in: Toolset Professional Support |
2 | 11 | 6 years, 9 months ago | ||
How to add custom form validation
Started by: cristhianB
in: Soporte profesional de Toolset
Problem: Solution: add_filter( 'cred_form_validate', 'tssupp_custom_validation', 10, 2 ); function tssupp_custom_validation( $error_fields, $form_data ) { //field data are field values and errors list( $fields,$errors ) = $error_fields; //validate if specific form if ( $form_data['id'] == 12 ) { if ( isset( $fields['wpcf-descripcion']['value'] ) && str_word_count( $fields['wpcf-descripcion']['value'] ) < 50 ) { $errors['wpcf-descripcion'] = 'Debe escribir mínimo 50 palabras'; } } return array( $fields,$errors ); } Relevant Documentation: |
2 | 3 | 6 years, 9 months ago | ||
En las búsquedas personalizada quiero filtrar el campo “edad” por un rango
Started by: cristhianB
in: Toolset Professional Support
Problem: Solution: Ve el pantallazo abajo: https://toolset.com/forums/topic/en-las-busquedas-personalizada-quiero-filtrar-el-campo-edad/#post-612897 |
2 | 5 | 6 years, 9 months ago | ||
Unable to use Types fields in CRED form because of mb_convert_case error
Started by: cristhianB
in: Soporte profesional de Toolset
Problem: Fatal error: Call to undefined function mb_convert_case() Solution: Contact host to activate it. |
2 | 11 | 6 years, 9 months ago | ||
Split: How to have a select field list of countries without entering them manually
Started by: cristhianB
in: Soporte profesional de Toolset
Problem: Solution: It is possible with taxonomies, using a plugin such as BulkPress. A Toolset user has made modules with ready-made country and state custom fields available here: https://app.box.com/s/hp4apo2547okcq7ma6uj |
2 | 3 | 6 years, 9 months ago | ||
Ocultar el enlace para editar una entrada para otro usuarios que el autor
Started by: cristhianB
in: Soporte profesional de Toolset
Problem: Solution: [wpv-conditional if="( '[wpv-post-author]' eq '[wpv-user field='user_nicename']' )"] [toolset-edit-post-link content_template_slug="edit-thing"]Edit %%POST_TITLE%%[/toolset-edit-post-link] [/wpv-conditional] Relevant Documentation: |
2 | 3 | 6 years, 9 months ago |