rafaelL-2
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 |
---|---|---|---|---|---|
get value from parent post on cred notifications
Iniciado por: rafaelL-2 en: Toolset Professional Support |
1 | 2 | hace 6 años, 2 meses | ||
date fields doesn’t show data if they are before 1950
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: I am using the last beta version of types 3.0-b1, the types custom date field. If the data is like: 28/01/2018 --> data is shown but if the data is like 28/01/1940 --> no data or strange data like 1/5/9715 Solution: Here is the hot fix: if ( preg_match( '~^[1-9][0-9]*$~', $value ) ) { To: if ( preg_match( '~^-?[1-9][0-9]*$~', $value ) ) { Relevant Documentation: |
2 | 9 | hace 6 años, 7 meses | ||
CRED NOTIFICATIONS DOESN'T SHOW PARENT FIELD INFO
Iniciado por: rafaelL-2 en: Toolset Professional Support |
2 | 12 | hace 6 años, 7 meses | ||
Create child post from CRED
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: The issue here is that the user wanted to create his child post immediately after creating the parent and also having that child post automatically assigned to the created parent. Solution: Using this format add_filter('cred_success_redirect', 'custom_redirect',10,3); function custom_redirect($url, $post_id, $form_data) { if ($form_data['id']==12) return 'urltochildform?parent_{CPTSLUG}_id='.$post_id; return $url; } You will need to add the child form to a different page and using the redirect hook above to redirect to that page. |
2 | 5 | hace 6 años, 7 meses | ||
Limiting to view custom post based on author
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: Solution: To do this you can follow the instructions in our documentation in the link below. |
2 | 3 | hace 6 años, 8 meses | ||
Opciones para el buscador de view , opciones de buscador
Iniciado por: rafaelL-2 en: Soporte profesional de Toolset |
2 | 3 | hace 6 años, 8 meses | ||
Usin the wpv_filter_query to more than one user
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | hace 6 años, 8 meses | ||
Add a select custom user field with options automatically generated from a CPT
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: Solution: It is not documented. Below is some sample code which populates a field called "Choices" with the posts of the custom type "thing". /** * Auto-populate custom User Field */ add_filter( 'wpt_field_options', 'tssupp_populate_user_field', 10, 2 ); function tssupp_populate_user_field( $current_options, $title_of_field ){ if ( 'Choices' == $title_of_field ) { $current_options = array(); $args = array( 'post_type' => 'thing', 'numberposts' => -1 ); $posts = get_posts( $args ); foreach ($posts as $key => $post) { $current_options[] = array( '#title' => $post->post_title, '#value' => $post->ID ); } } return $current_options; } |
2 | 6 | hace 6 años, 8 meses | ||
Create a personalized sub search by setting a specific parameter with view
Iniciado por: rafaelL-2 en: Toolset Professional Support |
2 | 8 | hace 6 años, 8 meses | ||
Pagination controls missing from archive
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 7 | hace 6 años, 8 meses | ||
When importing posts the Template Layout is not assigned
Iniciado por: rafaelL-2
en: Toolset Professional Support
Problem: Solution: |
3 | 6 | hace 6 años, 10 meses | ||
CHECK POSTED DATA TO AVOID DUPLICATED ENTRIES
1
2
Iniciado por: rafaelL-2 en: Toolset Professional Support |
2 | 18 | hace 6 años, 11 meses | ||
CRED POST AS ANOTHER USER ID
Iniciado por: rafaelL-2 en: Toolset Professional Support |
2 | 5 | hace 6 años, 11 meses | ||
Multiple searcher in same page with a switch
Iniciado por: rafaelL-2 en: Types Community Support |
2 | 2 | hace 7 años, 1 mes | ||
¿Se puede importar datos a un type personalizado desde base de datos, excel ect?
Iniciado por: rafaelL-2 en: Soporte profesional de Toolset |
2 | 2 | hace 7 años, 4 meses |